Actually, the thread is about determining if its available at all. Then, once I know, I can set a URL variable or do what Jam suggested and display something. Either way, the way to do it is to run a script that does something. If that something isnt done, then the script didnt run because JS is disabled. Once I know JS is disabled, I can use that info moving data from server-side to client-side at least thats what Im trying to do Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Felix Geisendörfer Sent: Saturday, April 21, 2007 8:44 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Best way to determine if a user has Javascript enabled? 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>