• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Does the browser have to be AJAX aware?

 
Ranch Hand
Posts: 479
1
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

My query is related to the AJAX framework. Do browsers have to be aware of the framework?

I have worked with ExtJs and while creating the XMLHttp object for making an asynchronous server call, the function that processes the response can be mentioned. Now when the response is obtained this function gets called, with a JSON object containing the response data as one of the parameters, where the update of the page elements is performed. Now once the response is obtained at the client it is up to the browser to make the call to the desired function. So I assume the client browser should be aware of this feature?

Another doubt is AJAX came with Web 2.0, I understand. So does this mean earlier versions of browsers would not be capable of performing an AJAX request/response cycle?

I would be very grateful if somebody could clarify my doubts.

Thanks,
Raj.
 
Sheriff
Posts: 67747
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Raj Kamal wrote:Do browsers have to be aware of the framework?


No. Browsers know diddly about the frameworks. The browser does need to support XMLHttpRequest (or equivalent) in order for the frameworks to be able to use it, of course. All modern browsers that matter support this.

So I assume the client browser should be aware of this feature?


See above.

Another doubt is AJAX came with Web 2.0, I understand.


"Web 2.0" is just a buzz-word that has little meaning. It's not like it's a product or anything like that.

So does this mean earlier versions of browsers would not be capable of performing an AJAX request/response cycle?


Of course older browsers that pre-date the inception of XMLHttpRequest can't support Ajax.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic