So I am running into this problem. I am trying to use $.get() to interact with a REST application within Drupal 6.16, which uses jQuery 1.2.6
I have a test page on the desktop where I run the following code, and it successfully runs the alert.
url = 'http://api.twitter.com/1/help/test.xml';
$.get(url, function(){alert("WORKING!!");}, 'xml');
When I try to run it within Drupal, however, the alert is never reached. For some reason, the function never gets triggered.
Any ideas?