Nieuw lid |
|
Laat het allerten
onderstaande code redirect naar "wel" of "niet" js enabled paginas
<html>
<head>
<meta http-equiv="Refresh" content="1; URL=geenjs.htm">
<script type="text/javascript">
function detectjs()
{
window.location="weljs.htm";
}
</script>
</head>
<body onload="detectjs()">
<P>checken of je js aan hebt staan..</P>
</body>
</html>
<html> <head> <meta http-equiv="Refresh" content="1; URL=geenjs.htm"> <script type="text/javascript"> function detectjs() { window.location="weljs.htm"; } </script> </head> <body onload="detectjs()"> <P>checken of je js aan hebt staan..</P> </body> </html>
Het is niet echt een check, maar het is beter dan niets |