Issue:
Attach a click event on a link on a page (say link to http://google.com/)
Try doing an AJAX or getJSON (JQuery specific call) from the function bound to that click event
The AJAX or getJSON call is never completed (even if we add an explicit half-second pause)
Sample HTML page: http://paraschopra.com/temp/bah.html
Sample Server logger (to check counts): http://paraschopra.com/temp/count.txt
The bah.html file contacts a simple PHP logger via getJSON if you click on ABC link. The logger increments the number in count.txt. You will realize on Chrome 6 (and Safari), the server never gets contacted while on FF, IE, Chrome 5 the server gets contacted. Is it a bug or what? Is there a workaround right now?
By the way, works on all other browsers: FF, IE, etc.