Hi,
This isn't something that FormMail can do, as it doesn't interact with your HTML.
You'll need to look for Javascript code on the web, and I'd recommend using jQuery for this.
For example, to hide the field called "Phone", you can use this code:
and to show it again:HTML Code:$('input[name="Phone"]').hide();
HTML Code:$('input[name="Phone"]').show();
Bookmarks