I'm working on this website wich relies heavilly on Javascript and jQuery (http://windowsnaarlinux.nl/). The problem is that all those object are made visible with an effect using jQuery. So when the user has disabled Javascript in their webbrowser, they see nothing but a static background. I know I can just set everything visible and use Javascript to hide everything when the page loads so jQuery can do the effects, but this only works for small things like icons. When I use that strategy on this website, everything flashes at first, then disappears, and then comes back with a jQuery effect. This doesn't look nice. So, is there a way to get it to show the content when Javascript is disabled? I've alreayd put the content between noscript tags as well (when a certain PHP GET parameter is given), so Google can see the content. Problem is that the navigation bar and the content area are hidden unless jQuery makes them visible.
|
|
There is no real solution to your problem apart from redesigning your page so that one version is built by javascript and another kept inside noscript tags. You could run a javascript redirect to a javascript only version outside of any My best advice to you is if you need your page to function without javascript then don't build javascript into it's core (do you need javascript to load everything on your page?) |
|||||||||||
|
|
Best solution is the progressive enhancement method - assume that everyone coming in has a braindead/ancient/obsolete browser, and make your landing/home page be a plain-jane "you must upgrade to something less useless" page. On there you'd have some JS that automatically redirects to the enhanced page. Old/bad browsers won't do the redirect, and see the upgrade text. Modern browsers will jump to the new page automatically and life goes on. |
|||||
|
|
Per default, browsers with javascript turned off render additional content inside given so, basically, it should be absolutely possible to show a downstripped version of the content. I guess in this case, the main problem was, that the content container (that probably got pulled from the according php call), was hidden. so it did not show up. the solution to this is, alas, also the weak spot of this approach: you wouldn't need to hide the content in the so even though this should answer the question, other answers in this post should be considered a better approach. |
|||
|
|