[jQuery] Re: hide() not working when disabling CSS

2008-10-28 Thread Isaak Malik
noscript is just an element that is displayed when JavaScript has been disabled (99%) in the user's browser or when JavaScript is not supported by it (1% mostly search engines). On Tue, Oct 28, 2008 at 12:48 AM, 5h4rk [EMAIL PROTECTED] wrote: Thanks! Now I get it. Can you explain the reasoning

[jQuery] Re: hide() not working when disabling CSS

2008-10-27 Thread Karl Swedberg
On Oct 26, 2008, at 9:33 PM, 5h4rk wrote: Hi, I have p class=jsoffPlease turn Javascript on to view the content./p and $('p.jsoff').hide(); When I turn CSS off using the Web Developer Extension for Firefox and Javascript on, the message is somehow not hidden. I'm not sure if this is the

[jQuery] Re: hide() not working when disabling CSS

2008-10-27 Thread Isaak Malik
It's much wiser to use noscriptp class=jsoffPlease turn Javascript on to view the content./p/noscript instead of a JavaScript function that hides it. On Mon, Oct 27, 2008 at 11:01 PM, Karl Swedberg [EMAIL PROTECTED]wrote: On Oct 26, 2008, at 9:33 PM, 5h4rk wrote: Hi, I have p

[jQuery] Re: hide() not working when disabling CSS

2008-10-27 Thread 5h4rk
Thanks! Now I get it. Can you explain the reasoning behind the noscript approach please? Thanks again. On Oct 28, 9:50 am, Isaak Malik [EMAIL PROTECTED] wrote: It's much wiser to use noscriptp class=jsoffPlease turn Javascript on to view the content./p/noscript instead of a JavaScript