Click to See Complete Forum and Search --> : help


numba_one
02-01-2003, 12:19 PM
does any one have a code that will prompt the user if they don't have javascript enalbed in their browser? It would be nice if the code automatically changed it if they click on a button or something. Please give me a code if you have one or direct me to a web site that could help me out! Thanks!!

Zach Elfers
02-01-2003, 12:29 PM
<noscript>
You don't have JavaScript enabled.
</noscript>

You couldn't make JavaScript enabled by having them click a button, but you could add a link so that they could download a JavaScript enabled browser.

numba_one
02-01-2003, 12:36 PM
but you could add a link so that they could download a JavaScript enabled browser. [/B]

how would i go about adding a link to a prompt box to DL a java enabled browser?

Charles
02-01-2003, 12:39 PM
Keep in mind, though, that users who eschew use JavaScript do so intentionally. Some cannot use JavaScript because of their disabilities and those who can use it know perfectly well how to turn it back on. It is the web author's responsibility to ensure that the page works equally well, with or without JavaScript. Using the NOSCRIPT element to tell people to turn on JavaScript is exactly like telling a blind man to open his eyes.

numba_one
02-01-2003, 12:43 PM
would i put this in the head section or the body section?

<noscript>
You don't have JavaScript enabled.
</noscript>

im assuming the head but i just want to make sure

Zach Elfers
02-01-2003, 02:16 PM
You should put it in the body section.