this is working fine
function openContent (id) {
$.fancybox('<h1>Lorem lipsum</h1>');
}
but when I try to open an iframe, nothing happens
function openContent (id) {
$.fancybox.open({href:'http://www.google.com'});
}
no error message in firebug or chrome console. i'm trying in localhost.
any idea?