I load content to my popup with jQuery Ajax load function and I use submit function in load functions callback function, but for some reason event is not fired at all. (I use jQuery jquery-1.3.2.min.js)
$('.popup-container').load(url, function(){
/** Do some stuff here */
$("form").submit(function() {
alert("Form submitted!");
return false;
});
});