Detecting if JavaScript is enabled is actually fairly straightforward.
No need to make it so complicated.
Well I think this thread is about how to detect if JS is enabled on the
Server-side ; ). Your method of course is the way to go if all one needs
is to display a msg to the user.
-- Felix
--------------------------
http://www.thinkingphp.org
http://www.fg-webdesign.de
Giant Jam Sandwich wrote:
Detecting if JavaScript is enabled is actually fairly straightforward.
No need to make it so complicated.
$(function(){
$("#is_disabled").css("display","none");
});
...
<div id="is_disabled">You have JavaScript disabled.</div>