-
input type=hidden
Can you find the element "name" of a hidden named element? I'm assuming you can't but i dont really know much about html.
Trying to enumerate through all elements in a page and some are coming up as hidden, source reveals that they're HTML is 'input type=hidden'. They're "name" seems to be a var.
-
Re: input type=hidden
Are you parsing some external page?
-
Re: input type=hidden
The browser DOM should reveal all form elements as the "hidden" tag simply tells the browser not to display that field.
-
Re: input type=hidden
ok, figured it out, thanks anyway.