Awesome Jared.!!
One more related question: On the code below "loc1" shall not return '-1' but it does!!
I did a log message to see what is stored in i.innerText and surprisingly I see the entire object data and proberties rather than just the Value of innerText which is the same as in the string 'S' !!! secondly even if InnerText does not contain only the string specifies in 'S', it still shall not return a '-1' ! What am i missing here?
Tx
s = "Item #:UAWS\r\n" +
"Quantity:4\r\n" +
"Price:$138.00"
loc1 = i.innerText.search(s);