I use the following script to catch the click on a second submit-button and send the data via ajax to fancybox. The script works fine, but only the first time. If you close fancybox and want to open it again, the firefox-console says that $.fancybox is undefined and nothing happens.
$(document).ready(function(){
$(':submit').click(function(){
var value = $(this).attr('id');
if (value == 'preview') {
$.fancybox.showLoading();
$.ajax({
type : 'POST',
cache : false,
url : '/mypath/index.php',
data : $('#myform').serializeArray(),
success : function(data) {
$.fancybox(data)
}
});
return false;
}
});
});
Maybe it has to do with the other scripts used on the site: These are Datepicker, Bassistance Validate and Tooltip and some custom-scripts. I created a small demopage just with a form and a small destination /mypath/test.php and had no problems.
Edit: Deleted, no good idea. If the problem would have been caused by the .ready it wouldn't work on the testpage.
Edit2: Solved. The problem was, that I called jquery and the ui in the header of the target-site url : '/mypath/index.php'. I deleted the code and now it runs!
TypeError: $.fancybox is undefined $.fancybox.showLoading();– maxcode Dec 4 '12 at 8:44