> I found JQuery very easy to use and start to add it to my > page, however, it does not work when browser's javascript is > disabled, how can we detect if a user turns it off so that we > can take care of that in another non script way? Thanks.
1) Write your page in such a way that it works OK without JavaScript, but is enhanced when JavaScript is enabled. 2) Use a <noscript> tag to provide content that is rendered only when JavaScript is disabled. -Mike