Inputting this command into chrome's consle:
document.getElementsByTagName("li")[69];
I get the following output:
<li val="169244288">NoOneRuleZ</li>
I am trying to extract the val attribute. I've tried:
document.getElementsByTagName("li")[69].value;
document.getElementsByTagName("li")[69].valueName;
document.getElementsByTagName("li")[69].val;
value gives me 0 and valueName and val give me undefined.