Hi, this request is sort of 2 questions in 1 but both are related.
Is there a way to parse the HTML of a page, after a user has made changes to the controls on that page (e.g. checking a checkbox that was originally un-checked, or typing text in a text box, etc.), using innerHtml??
I know that using the document.getEle mentById is only able to return the attributes of a page on load but that it cannot deal with changes to control values once it has loaded.
I have been able to parse the html using innerHtml OK and I know that the .search() method is able to cater for finding the first appearance of a string.
However, I have several checkbox controls on the same page, whose attribute I need to retrieve, in the most efficient way.
Is anyone familiar with this issue and can give me advice on how to do that>?
Many Thanks
Matt
Is there a way to parse the HTML of a page, after a user has made changes to the controls on that page (e.g. checking a checkbox that was originally un-checked, or typing text in a text box, etc.), using innerHtml??
I know that using the document.getEle mentById is only able to return the attributes of a page on load but that it cannot deal with changes to control values once it has loaded.
I have been able to parse the html using innerHtml OK and I know that the .search() method is able to cater for finding the first appearance of a string.
However, I have several checkbox controls on the same page, whose attribute I need to retrieve, in the most efficient way.
Is anyone familiar with this issue and can give me advice on how to do that>?
Many Thanks
Matt
Comment