i am using FancyBox jquery plugin.
i want to display a popup a description window when clicking on a link.the description is getting from a url (something like ajax).but when i click the link fancybox doesn't work and my browser window goes to that url instead of poping up.
why is it so?
my link elements are loading via ajax.
here's my code:
$("[id^=pane]").delegate("a.group:not(.haspopup)","click",function() {
$(this).addClass("haspopup").fancybox({
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'speedIn' : 600,
'speedOut' : 200,
'overlayShow' : false
}).click();
});