Hey,
I have just updated to 1.4.2 and now everything that has worked before does not. And I cant figure out why.
var data = {
'what': 'post',
'type': $(this).attr('class'),
'id': $(this).next('input').val()
}
$.post(
'/utils/ajax/',
data,
function(response) {
alert(response.result);
}, 'json'
);
It looks like now (after the update) I wont even get to the success function, although firebug says that everything was fine and shows the returned string. If that will help I am using django.
Any ideas are appreciated
Regards