1.5.1+ broke my old $.get() json calls
Hi,
functions like:
- function showData(id) {
- $.get("/url/getdata", {id : id}, function(data) {
- $("#dialogData").html(data);
- $("#dialogData").dialog({width: 500, modal: true, zIndex:22000});
- }, "json");
- }
no longer work with the addition of 1.5.
Looking at firebug, the correct data is returned, but the function breaks after entering the callback.
Everything simply stops.
How can I fix this? I read about the changes to Ajax call in 1.5, but I have over a thousand such calls through my project -> I cannot even begin to think about hunting them all down and changing them, let alone bug testing it all.