Is there a way to prompt the users for activating JavaScript with server-side event handler in case JavaScript is turned off on their PCs, where they shall be asked to press a button (submit a form, I mean) in a popup window or designated DIV in order to activate the JavaScript?
Is there a way to prompt the users for activating JavaScript with server-side event
Share
No, there’s no way to do this. However, you can provider a
<noscript>tag that would explain users how to turn JS on.For example:
You may want to use server-side browser sniffing to provide most relevant guidance to user (by telling them how to do that in a browser they are currently using).