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?