Hi to all fancybox lovers. How do i insert helpers here:
$(document).mouseleave(function() {
$.fancybox("#feedback_form");
});
I 've got stuck there.
Hi to all fancybox lovers. How do i insert helpers here:
$(document).mouseleave(function() {
$.fancybox("#feedback_form");
});
I 've got stuck there.
(I guess) you can do:
$(document).mouseleave(function() {
var options = {
openEffect: 'elastic',
helpers: {
title: {
type: 'inside'
}
}
};
$.fancybox("#feedback_form", options);
});
The question is not really clear, but my guess is that you are looking for something like this?
$(document).mouseleave(function() {
$("#feedback_form").show(); // this will remove the 'display:none'
$("#feedback_form").fancybox();
});