-
Disabling Caching on All AJAX in jQuery
It’s no secret that many of us that use javascript regularly love jQuery because it handles a lot of the cross browser issues and makes our lives so much easier. The .ajax function makes use of caching by default, but we can override this by creating a function called .ajaxSetup and adding cache: false in […]
-
jQuery + PHP to parse XML
jQuery is very well suited for cross browser JavaScript development, but I bet you didn’t know jQuery is also fairly well suited to parsing XML. I often use jQuery to send XMLHttpRequests and then parse the XML returned by a PHP script on the server and then manipulate the return in some way. I won’t […]