$.get(URL, fn) complains about , ?
According to [the main jq site|http://docs.jquery.com/Get] I can use, as an example:
-
$.get('http://www.google.com', function(data) { alert("data:" +data); });
to load asynchronously and alert after load. But it always complaining about the comma saying other chars expected? Are the Get docs out of date or is there a trick to getting the $.get to work?
Cheers