+ 1
help
I need a script that force users tod enable javascript when it is disabled so something like pop up please enable javascript
3 Answers
+ 2
Alert(); wont work if JavaScript is disabled!!
Not many users disable JavaScript nowadays as many websites depends on it to function correctly. If they do disable it, use <noscript> to display a warning message. You use CSS to style it as you wish:
<noscript>
<div style="border: 1px solid green; padding: 10px">
<span style="color:red">JavaScript is not enabled! Please enable it.</span>
</div>
</noscript>
+ 1
thanks for your answers
0
if the user use javascript the will the alert open ?