Habrovany, help to understand.
There is a simple form where ajax'ω must be sent information.
Try $.get():
$.get('registration/check/', 's=3', function(html) {
alert('1');
});
Everything is fine.
Try $.post() with the same parameters:
$.post('registration/check/', 's=3', function(html) {
alert('1');
});
FireBug gets the response 500-error (internal server error).
Anyone encountered this?