when included in a Firefox addon xul file, jquery version 1.2.6 works (sync calls work, async calls
- by Delirium tremens
In the Javascript Shell, I click the browser.xul link and:
$.ajax({url:'http://www.test.com/', async: false}).responseText; works
(async default is true)
$.ajax({url:'http://www.test.com/'}).responseText; doesn't work
what are the ways to make it work?