i’m trying to compare a value from an HTML label, but can’t parser it.
from this JS
document.getElementById ("00NE0000001BprW_chkbox");
i get this HTML
img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="00NE0000001BprW_chkbox" title="Not Checked"
I need to compare with the title that if is “Checked”, it’s ok.
How can i compare with the title label?
That’s all you need. Optionally, convert it to lower case and compare it against
"checked".