I am loading some content through ajax, and are using .live to make the submit button which was just loaded work. Inside this .live-call, I want to do a .post-call. This does not work. If I put an alert(...) just before this .post-call, the alert works.
Is there a hack for calling .post() inside a live()? As I understand it, the following code will not call the .post call. Are there any hacks to make this work.
$('#addeventsubmit').live("click", function(){
$.post('url...', {data:...},
function(data){
alert("test");
}, 'json');
});
Edit: I am not trying to submit a form. I am clicking the button, and getting some values here and there, which I wrap into an array, and sends that through .post. I did try to do it with .ajax, and that seemed to be the solution.
return false;on the submit of the form. – Neal Feb 27 '12 at 13:55