Ajax without JavaScript

You should look into "graceful degradation". It won't give you the dynamic input/feedback that Ajax "gave the web", but that was how most of the web worked back in 2005 and before.

Other than that, your choices are Flash or Java but I wouldn't recommend that and I don't get the impression you were looking for such a recommendation either.


The limitation is the 'j' in Ajax. You need JavaScript to do Ajax - there's no way to update page content without it.

You should always try to design your Ajax applications so that links have a non-ajax fallback wherever possible. So if you have a link which updates a div with new data, when JavaScript is turned off that link will lead to a new page which has that div updated.


AJAX actually means Asynchronous Javascript And Xml -- note the Javascript part.

You cannot use Ajax without Javascript : HTML by itself is not dynamic : you need Javascript for that.


(Yeah "Ajax" means more than just AJAX -- but the idea is the same)


AJAX isn't possible without Javascript, because it presupposes JS code running on the client. If JS is disabled, there's nothing that can execute in the browser and contact the server - only "dead" HTML and CSS.

Flash is an alternative, but then again it can be disabled too.