Is there any parameter/function in JS that tells you if an element was closed with an ending tag? ... for this purpose.
|
|
|
|
|
|
|
JS is simply the scripting language that provides access to the DOM of the page. The DOM is preparsed from the page source before you ever get access to it. I am fairly sure that any attempt to access the page source will return the pre-corrected source as determined by the browser during the initial parsing phase. So in a word, no. |
||||||
|
|
|
Taking this approach you'd have to parse the HTML yourself - a momentous task. |
||
|
|
