본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

jquery content not working after the updates from firefox

more options

Hi, i've realized that some of my website's banner is not working after the recent updates from firefox, whereas those website's banner is working in google chrome. Hope there is a solution for this as i'm using the firefox for years and wish this issues can be settle. The banner URL is http://www.irs.com.my/slider/index.html

Hi, i've realized that some of my website's banner is not working after the recent updates from firefox, whereas those website's banner is working in google chrome. Hope there is a solution for this as i'm using the firefox for years and wish this issues can be settle. The banner URL is http://www.irs.com.my/slider/index.html

선택된 해결법

SlideDeck has a post on how to resolve this error, caused by a bug in this very old version of their library that you're using. See: Firefox 20 update and SlideDeck.js – we’ve got you covered for more information. As a Pro customer, you were supposed to get an email notice, but... here you are.


I studied the script before discovering that and found two issues, but there might be more:

(1) slidedeck.jquery.js detects Firefox 20 as Firefox 2 and halts. Note that this regex is the problem:

firefox2:F.match(/firefox\/2/)?true:false

(2) Starting in Firefox 16, the -moz-transform property was unprefixed, that is, you need to use transform for Firefox 16 and later.

문맥에 따라 이 답변을 읽어주세요 👍 2

모든 댓글 (1)

more options

선택된 해결법

SlideDeck has a post on how to resolve this error, caused by a bug in this very old version of their library that you're using. See: Firefox 20 update and SlideDeck.js – we’ve got you covered for more information. As a Pro customer, you were supposed to get an email notice, but... here you are.


I studied the script before discovering that and found two issues, but there might be more:

(1) slidedeck.jquery.js detects Firefox 20 as Firefox 2 and halts. Note that this regex is the problem:

firefox2:F.match(/firefox\/2/)?true:false

(2) Starting in Firefox 16, the -moz-transform property was unprefixed, that is, you need to use transform for Firefox 16 and later.