Hi all
Anyone know why some visitors to my site can see it while others only see a blank page?
my site is www.nativeground.co.uk
many thanks
Nic
Hi all
Anyone know why some visitors to my site can see it while others only see a blank page?
my site is www.nativeground.co.uk
many thanks
Nic
Looking at your source code, the entire page is made up from javascript.
If i had javascript disabled in my browser I would see nothing!
Try making it user freindly for all browsers!
Many thanks for that...is there any way that I can detect and inform users they need to enable javascript?
Using <noscript> tags you can do this; however, it is a much better idea to make your site accessible to all browsers (even those with Javascript disabled).
Hope this helps.
"Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design
Many thanks....wish I knew how to use <noscript> tags
Nic
Very simple example:
Hope this helps.Code:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv=content-type content="text/html; charset=UTF-8"> <title>Testing</title> </head> <body> <script type="text/javascript"> document.write('This is written using Javascript'); </script> <noscript> This is seen if Javascript is not enabled in the browser. </noscript> </body> </html>
"Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design
Thanks so much - I'll have a go.
cheers
Nic
Bookmarks