Reputation: 12709
As far as I know, it's possible for a client to block JavaScript in his browser. If that happens, what will happen to AJAX calls? Will they work or not?
Upvotes: 0
Views: 455
Reputation: 53
I never bother with users without javascript, well I do bother but only to a certain extend. It might be a bit harsh but people or companies which disable javascript know that they will be missing out. Ofcourse text-only browsers should not be forgotten.
Upvotes: 0
Reputation: 8141
If javascript is disabled it will not work... You should read into Progressive Enhancement and "HIJAX"
http://en.wikipedia.org/wiki/Progressive_enhancement
http://domscripting.com/blog/display/41
Upvotes: 2
Reputation: 663
The AJAX call will not be executed if the user has disabled JavaScript.
Upvotes: 4
Reputation: 6956
No, the J in AJAX stands for JavaScript - if Javascript doesn't work, then neither will AJAX.
Upvotes: 5