Forum Moderators: coopster
I think you would have to use something like:
<noscript> [w3schools.com...]
as I don't think you could use any form of client-side script to do the check due to scripting beiong disabled.
HTH,
-Gs
If you make use of the <noscript>tags then you could either put a message saying "turn your javascript on" (particularly stupid message; as those people that are computer literate enough to turn it off dont want it on, and those that cant use javascript cant turn it on...however you see this message on hundreds of sites if you turn off your javascript and browse) or if you are using some ajax to alter content then use PHP to put the content there and have a refresh button, so that they can click to get the latest content. Or just have static text to give people another method of accessing that content i.e.
<script type="text/javascript">weatherMap()</script>
<noscript>View our <a href="weather_map.php">weather map</a></noscript>
[edited by: PHP_Chimp at 1:41 pm (utc) on April 1, 2008]