2013-05-01 3 views
-1

Colorbox는 IE에서 중복 AJAX 요청을 발행하고 Firefox는 동일한 방식으로 작동합니다. 브라우저 버그입니까? 아니면 Colorbox 자체의 버그입니까?Colorbox가 IE에서 중복 AJAX 요청을 실행 중입니다.

나는이

$(".iframe").colorbox(href:"www.google.com",speed:0,IFrame:true,fastIframe:false,Open:true,OverlayClose:false) 

모든 sugggestions과 같은 코드를 사용하고 있습니다.

답변

0

게시 된 코드가 잘못되었습니다. 속성을 전달하고 있지만 객체가 없으며 camelCase 속성도 있습니다. 속성은 대소 문자를 구분하며 문서를 읽고 올바른 속성을 사용합니다.

$(".iframe").colorbox({ 
    href: "www.google.com", 
    speed: 0, 
    iframe: true, 
    fastIframe: false, 
    open: true, 
    overlayClose: false 
}); 
관련 문제