When doing $.post('actions.php',{ content: 'xxxxxxxxxxxx' }, function(data){});
It works i get 200 OK.
But when doing:
$.post('actions.php',{ content: escape($('body').html()) }, function(data){});
I get 403, error FORBIDDEN.
Any idea why? It's on the same domain, so i'm not violating SOP.