我的网站位于:
http://210.48.94.218/~zealandt/book-a-tattoo/
我在地图坐标中的 jQuery 代码成功运行了 fancybox。但是,地图下方的链接的幻想框(城市链接)与 jquery 冲突。每个链接必须显示类似于地图坐标弹出窗口的弹出窗口。
问:我怎样才能使我的 jQuery 代码不与 fancyBox 的 jquery 冲突?
我的代码显示城市链接的弹出窗口:
$('#table-list a').click(function(){
OutputFancyBox($(this));
});
function OutputFancyBox(element){
fb = jQuery.noConflict();
fb.fancybox({
href: '#inline-element',
title: element.attr('title'),
width : popUpWidth,
height : 450,
fitToView : false,
autoSize : false,
closeClick : false,
openEffect : 'elastic',
closeEffect : 'elastic',
minHeight: 300,
onCleanup : function() {
$('#gform_wrapper_3').css("display","none");
}
});
}