Hello,
my question is Can I prevent a page refresh from this code
As you can see, I submit a post action from a normal click_event, wich I need because live does not support submit events.
jQuery('.verwijder').live('click', function() {
t=$(this);
t.parents(".paneltbnote").animate({ opacity: 'hide' }, "slow",function(){
t.parents(".wrappertbnote").remove();
settbnotecounter();
$db_tbnoteid = t.parents(1).children('.frmnoteid').val();
$.post("tbnotesact.php", {
noteid: $db_tbnoteid,
actie: "verwijder",
tijd: timestamp
}, function(xml) {
// hier nog iets doen
berichtentoevoegen(xml);//feedback
});//einde post methode
});// einde callback animate methode
return false;
});//einde binding click event