Is there a tag in html that will only display its content if JavaScript is enabled? I know noscript works the opposite way around, displaying its html content when JavaScript is turned off. but I would like to only display a form on a site if JavaScript is available, telling them why they cant use the form if they don't have it.
The only way I know who to do this is with the document.write(); method in a script tag, and it seams a bit messy for large amounts of html.
Thanks