Bei der Gruppe, für die Sie eine Mitteilung verfassen, handelt es sich um eine Usenet-Gruppe. Wenn Sie in dieser Gruppe Nachrichten posten, ist Ihre E-Mail-Adresse für jeden im Internet sichtbar
Anyone have any idea about this? First time I've seen it.
I using Mike Alsup's cycle plug-in to cross fade three photos.
When I first set this up, it worked fine in IE and FF.
Now, however, the code only works in FF. IE7 & IE8 (at a minimum),
return the error messages:
'jQuery' is undefined
jquery.cycle.all.2.65.min.js (line 16)
Line 16 refers to the first line of code in jquery.cycle.all.2.65.min.js,
that starts:
;(function($){var
ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};} f
unction log(){if(window.console&&window.console.log){ etc.
From: Rick Faircloth [mailto:R...@WhiteStoneMedia.com] Sent: Friday, November 20, 2009 11:36 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] Why would jQuery be undefined in IE, but not FF???
Hi, all.
Anyone have any idea about this? First time I've seen it.
I using Mike Alsup's cycle plug-in to cross fade three photos.
When I first set this up, it worked fine in IE and FF.
Now, however, the code only works in FF. IE7 & IE8 (at a minimum),
return the error messages:
'jQuery' is undefined
jquery.cycle.all.2.65.min.js (line 16)
Line 16 refers to the first line of code in jquery.cycle.all.2.65.min.js,
that starts:
;(function($){var
ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};} f
unction log(){if(window.console&&window.console.log){ etc.
Well, the most obvious idea that's coming to my mind would be to check
wether your jQuery <script> loader line comes before the plugin's loading
line. If not, the code of the plugin, which requires jQuery, will lack
jQuery and fail.
Michel Belleville
2009/11/20 Rick Faircloth <R...@whitestonemedia.com>
> *From:* Rick Faircloth [mailto:R...@WhiteStoneMedia.com]
> *Sent:* Friday, November 20, 2009 11:36 AM
> *To:* jquery-en@googlegroups.com
> *Subject:* [jQuery] Why would jQuery be undefined in IE, but not FF???
> Hi, all…
> Anyone have any idea about this? First time I’ve seen it…
> I using Mike Alsup’s cycle plug-in to cross fade three photos.
> When I first set this up, it worked fine in IE and FF.
> Now, however, the code only works in FF. IE7 & IE8 (at a minimum),
> return the error messages:
> ‘jQuery’ is undefined
> jquery.cycle.all.2.65.min.js (line 16)
> Line 16 refers to the first line of code in jquery.cycle.all.2.65.min.js,
> that starts:
> ;(function($){var
> ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};} function
> log(){if(window.console&&window.console.log){ etc…
One issue right away seen by doing a "view source" is that you are not
closing the tag:
<meta name = "keywords"
which happens to be the line right before the jquery (1.2.1 ??)
include.... that would definitely be an issue... one that perhaps
Firefox can get by, but apparently not the case with IE
From: Michel Belleville [mailto:michel.bellevi...@gmail.com] Sent: Friday, November 20, 2009 12:29 PM
To: jquery-en@googlegroups.com
Subject: Re: [jQuery] Why would jQuery be undefined in IE, but not FF???
Well, the most obvious idea that's coming to my mind would be to check wether your jQuery <script> loader line comes before the plugin's loading line. If not, the code of the plugin, which requires jQuery, will lack jQuery and fail.
Michel Belleville
2009/11/20 Rick Faircloth <R...@whitestonemedia.com>
Even stranger…
I went back to another site where I have the cycle plug-in successfully running
on IE and FF to retrieve the versions of jquery core and cycle plug-in that are working.
From: Rick Faircloth [mailto:R...@WhiteStoneMedia.com] Sent: Friday, November 20, 2009 11:36 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] Why would jQuery be undefined in IE, but not FF???
Hi, all…
Anyone have any idea about this? First time I’ve seen it…
I using Mike Alsup’s cycle plug-in to cross fade three photos.
When I first set this up, it worked fine in IE and FF.
Now, however, the code only works in FF. IE7 & IE8 (at a minimum),
return the error messages:
‘jQuery’ is undefined
jquery.cycle.all.2.65.min.js (line 16)
Line 16 refers to the first line of code in jquery.cycle.all.2.65.min.js, that starts:
;(function($){var ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};} function log(){if(window.console&&window.console.log){ etc…
> *From:* Michel Belleville [mailto:michel.bellevi...@gmail.com]
> *Sent:* Friday, November 20, 2009 12:29 PM
> *To:* jquery-en@googlegroups.com
> *Subject:* Re: [jQuery] Why would jQuery be undefined in IE, but not FF???
> Well, the most obvious idea that's coming to my mind would be to check
> wether your jQuery <script> loader line comes before the plugin's loading
> line. If not, the code of the plugin, which requires jQuery, will lack
> jQuery and fail.
> Michel Belleville
> 2009/11/20 Rick Faircloth <R...@whitestonemedia.com>
> Even stranger…
> I went back to another site where I have the cycle plug-in successfully
> running
> on IE and FF to retrieve the versions of jquery core and cycle plug-in that
> are working.
> *From:* Rick Faircloth [mailto:R...@WhiteStoneMedia.com]
> *Sent:* Friday, November 20, 2009 11:36 AM
> *To:* jquery-en@googlegroups.com
> *Subject:* [jQuery] Why would jQuery be undefined in IE, but not FF???
> Hi, all…
> Anyone have any idea about this? First time I’ve seen it…
> I using Mike Alsup’s cycle plug-in to cross fade three photos.
> When I first set this up, it worked fine in IE and FF.
> Now, however, the code only works in FF. IE7 & IE8 (at a minimum),
> return the error messages:
> ‘jQuery’ is undefined
> jquery.cycle.all.2.65.min.js (line 16)
> Line 16 refers to the first line of code in jquery.cycle.all.2.65.min.js,
> that starts:
> ;(function($){var
> ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};} function
> log(){if(window.console&&window.console.log){ etc…
-----Original Message-----
From: MorningZ [mailto:morni...@gmail.com] Sent: Friday, November 20, 2009 12:31 PM
To: jQuery (English)
Subject: [jQuery] Re: Why would jQuery be undefined in IE, but not FF???
One issue right away seen by doing a "view source" is that you are not
closing the tag:
<meta name = "keywords"
which happens to be the line right before the jquery (1.2.1 ??)
include.... that would definitely be an issue... one that perhaps
Firefox can get by, but apparently not the case with IE
From: Michel Belleville [mailto:michel.bellevi...@gmail.com] Sent: Friday, November 20, 2009 12:38 PM
To: jquery-en@googlegroups.com
Subject: Re: [jQuery] Why would jQuery be undefined in IE, but not FF???
The missing > issue mentionned by MorningZ might be your killer then.
Michel Belleville
2009/11/20 Rick Faircloth <R...@whitestonemedia.com>
Thanks for the reminder on that one, Michel...I checked that to make sure
From: Michel Belleville [mailto:michel.bellevi...@gmail.com] Sent: Friday, November 20, 2009 12:29 PM
To: jquery-en@googlegroups.com
Subject: Re: [jQuery] Why would jQuery be undefined in IE, but not FF???
Well, the most obvious idea that's coming to my mind would be to check wether your jQuery <script> loader line comes before the plugin's loading line. If not, the code of the plugin, which requires jQuery, will lack jQuery and fail.
Michel Belleville
2009/11/20 Rick Faircloth <R...@whitestonemedia.com>
Even stranger…
I went back to another site where I have the cycle plug-in successfully running
on IE and FF to retrieve the versions of jquery core and cycle plug-in that are working.
From: Rick Faircloth [mailto:R...@WhiteStoneMedia.com] Sent: Friday, November 20, 2009 11:36 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] Why would jQuery be undefined in IE, but not FF???
Hi, all…
Anyone have any idea about this? First time I’ve seen it…
I using Mike Alsup’s cycle plug-in to cross fade three photos.
When I first set this up, it worked fine in IE and FF.
Now, however, the code only works in FF. IE7 & IE8 (at a minimum),
return the error messages:
‘jQuery’ is undefined
jquery.cycle.all.2.65.min.js (line 16)
Line 16 refers to the first line of code in jquery.cycle.all.2.65.min.js, that starts:
;(function($){var ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};} function log(){if(window.console&&window.console.log){ etc…
Really...I didn't realize it would point out syntax errors like that.
Good to know...
Thanks!
Rick
-----Original Message-----
From: MorningZ [mailto:morni...@gmail.com] Sent: Friday, November 20, 2009 2:05 PM
To: jQuery (English)
Subject: [jQuery] Re: Why would jQuery be undefined in IE, but not FF???
> I never even thought to check that.
Firefox's "View Source" highlighted that line in red