Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Standalone ajax script

I am working on a small javascript library that will need some ajax functionality, json, jsonp and maybe some xml. I really like the way the jQuery ajax methods work, but don't have a need for all the other jQuery tools. Does anyone know of a small cross browser ajax script that implements most or all of the jquery functionality?

Thanks!

like image 853
Cory Gwin Avatar asked Nov 05 '22 06:11

Cory Gwin


1 Answers

if you don't want to use jquery for some reasons , you can use regular javascripts xmlhttpreqeust.

see example below

http://www.w3schools.com/xml/xml_http.asp
like image 61
kobe Avatar answered Nov 09 '22 04:11

kobe