Type: Boolean
Returns whether the visitor’s JavaScript is enabled. If the visitor has disabled their JavaScript support this property will return False. Otherwise if their JavaScript is enabled it returns True.
Note: Use of this property requires the Professional or Enterprise Edition of BrowserHawk.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("JavaScriptEnabled");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
JavaScriptEnabled: <% Response.Write(extBrow.JavaScriptEnabled); %>
</html>
See Also: