2
Guys, here’s the deal, I hid some div,that have inputs from a form inside, with
style='visibility:hidden; position:absolute'
And I’d like these DIV did not send information when the form was forwarded.
My question is: Is there only way to do this using JS or is there a simpler and less manual way to do this?
The most you can do is group inputs using a
fieldsetinstead of adivand mark thisfieldsetwith the Propertydisabled, unfortunately this approach does not work in IE.– Tobias Mesquita
@Tobymosque just tested it and it doesn’t really work in IE
– Wallace Fidelis