I have a web page where a part of the page is loaded via AJAX, but I also wanted to make it work if JavaScript is not enabled.
so, i wrote the code as
<script>
fetchCitiesAndDisplay ();
</script>
<noscript>
<%
out.print(Cities.getHtml ());
%>
</noscript>
where
fetchCitiesAndDisplay ()
is a javaScript Method, which will get the content (executes the code in Cities.java) and displays it.
Cities.java
is a Java class which will collect the cities from database and generates the html content to be displayed.
When JavaScript is off, everything works great.. as the ajax call will not be executed and only Cities.getHtml () will be called once.
but, when JavaScript is enabled, The Ajax call is also executed and Cities.getHtml () is also called.. even-though the display looks right because of tag, Cities.java will get the call twice for the same data, and it eats up a lot of time...
How to solve this?
i have to agree with @jfriend00, its not possible to identify if javascript is enabled using 1 page
You can use javascript to set a hidden variable with some value, when the page submits you can check for it and identify if javascript is enabled or not.. but this requires 1 request/response cycle, may be you can have an interim page which forwards the request to the intended page (with the hidden variable i discussed above).