Problem solved.
When I put the code below into my system, all my jquery just stop to work. Nothing happends when I try to trigger any other event.
The file sok_kund_db.php is error free.
$("#avbokad_kund_circle").click(function () {
var visa = '';
visa += 'klar_kund_circle=' + $(this).attr('value') + '&' + 'mass_id=' + '<?php echo $_GET['
mass_id ']; ?>';
$.post('sok_kund_db.php', visa, function (data) {
$("#resultat").html(data);
});
return false;
});
I can not see where I did wrong.