I have just updated to JQuery 1.5 and all my ajax calls that return JSON and a number of plugins instantly broke.
In my pre-1.5 code, I specified the dataType like:
dataType: "json"
Changing the dataType to:
dataType: "text json"
Fixes the problem but I do not want to manually change the plugins as this will affect upgrades.
Is there a way of handling this better with less disruption?
Content-Type: application/jsonheader and it should fix all your scripts (this should be done whenever outputting JSON anyways). – Brad Christie Feb 10 '11 at 10:05dataType"json" is predefined and will still parse incoming valid JSON data into javascript objects. – jAndy Feb 10 '11 at 10:07