@BrowserInfo("JavaScript") query

We are trying to develop fully accessible web forms and therefore take into account JavaScript being turned off in browser. Im trying to determine whether users have scripting turned on/off on their browser settings via Formula Language and have given @BrowserInfo(“JavaScript”) a go and it returns true all the time.

Has anyone any ideas… thanks

Subject: @BrowserInfo(“JavaScript”) query

You’ll probably find that @BrowserInfo will report whether the browser supports javascript (JS), and not whether it has been disabled or not.

You said “fully accessible web forms”. Your best bet it to develop the Forms with the owest common denominator in mind, and then sniff for JS on the page using JS.

Just make sure you use HTML comments in your tags so they don’t cause errors for non-JS browsers.

Thats my 2 pence worth…