Is this possible? I have this right now for my fancybox:
$(document).ready(function() {
$("a#uploadImage").fancybox({
'titleShow' : false,
'width': 560,
'height': 620,
'autoDimensions': false,
'overlayOpacity': 0.6
});
});
Is it possible to later on to do:
$(document).ready(function() {
$("a#uploadImage").fancybox({
'onCleanup' : function() {
if (window.confirm('Är du säker?'))
{
alert ('OK!');
}else{
return false;
}
}
});
});