fancybox v1.3不能工作在bootstramp 3上

解决方法:

在jquery.fancybox-1.3.4.js(非压缩)中第29行

isIE6 = $.browser.msie && $.browser.version < 7 && !window.XMLHttpRequest,
替换为
isIE6 = navigator.userAgent.match(/msie [6]/i) && !window.XMLHttpRequest,

在615行

$.browser.msie
替换为
navigator.userAgent.match(/msie [6]/i)


来源

http://stackoverflow.com/questions/14344289/fancybox-doesnt-work-with-jquery-v1-9-0-f-browser-is-undefined-cannot-read