Re: [jQuery] Why would jQuery be undefined in IE, but not FF???
Rick Faircloth schrieb: What could possibly be the issue? Your META are not closed: http://olaf-bosch.de/ http://ohorn.info/ http://www.akitafreund.de/ ---
RE: [jQuery] Why would jQuery be undefined in IE, but not FF???
Yep…that was it. Thanks for your input, Michel! Rick 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 Thanks for the reminder on that one, Michel...I checked that to make sure the load sequence was correct, and it is… Rick 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 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. I put those into the site at www.holtzmanrealestate.com and I get the same problem as before… ‘jQuery’ is undefined (line 10 of jquery.cycle.2.03.pack.js) and ‘jQuery’ is undefined (line 90 www.holtzmanrealestate.com, which refers to the cycle plug-in script as defined below.) What could possibly be the issue? Rick From: Rick Faircloth [<a rel="nofollow" href="mailto:r...@whitestonemedia.com">mailto:r...@whitestonemedia.com</a>] 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… The next error message returned by IE is: ‘jQuery’ is undefined www.holtzmanrealestate.com (line 85) That’s referencing this code on index.cfm: <script type="text/javascript"> $(document).ready(function(){ $('#photoMontage').cycle({ fx: 'fade', speed: 2000, timeout: 6000 }); }); Again, this code works fine in FF and did in IE when I first wrote the code and created the site. The HTML looks like this for the photos cycling: In IE, the first photo above shows, then nothing else happens except the error message in the lower right corner of the browser window. Anyone know of anything that could be happening to cause this? Thanks, Rick --- "Those who hammer their guns into plows will plow for those who do not." - Thomas Jefferson
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 > Thanks for the reminder on that one, Michel...I checked that to make sure > > the load sequence was correct, and it is… > > > > src="js/jquery-1.2.1.pack.js"> > > src="js/jquery.cycle.2.03.pack.js"> > > > > Rick > > > > *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 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. > > > > I put those into the site at www.holtzmanrealestate.com and I get the same > problem > > as before… > > > > ‘jQuery’ is undefined (line 10 of jquery.cycle.2.03.pack.js) > > and > ‘jQuery’ is undefined (line 90 www.holtzmanrealestate.com, which refers to > the > > cycle plug-in script as defined below.) > > > > What could possibly be the issue? > > > > Rick > > > > *From:* Rick Faircloth [<a rel="nofollow" href="mailto:r...@whitestonemedia.com">mailto:r...@whitestonemedia.com</a>] > *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… > > > > The next error message returned by IE is: > > ‘jQuery’ is undefined > > www.holtzmanrealestate.com (line 85) > > That’s referencing this code on index.cfm: > > > > <script type="text/javascript"> > > > > $(document).ready(function(){ > > > > $('#photoMontage').cycle({ > > fx: 'fade', > > speed: > 2000, > > timeout: > 6000 > > }); > > }); > > > > > > > > Again, this code works fine in FF and did in IE when I first wrote the code > > and created the site. > > > > The HTML looks like this for the photos cycling: > > > > > > > > > width="860" height="425" /> > > width="860" height="425" /> > > width="860" height="425" /> > > > > > > > > In IE, the first photo above shows, then nothing else happens except the > error > > message in the lower right corner of the browser window. > > > > Anyone know of anything that could be happening to cause this? > > > > Thanks, > > > > Rick > > > > * > --- > * > > *"Those who hammer their guns into plows will plow for those who do not." > - Thomas Jefferson* > > > > >
RE: [jQuery] Why would jQuery be undefined in IE, but not FF???
Thanks for the reminder on that one, Michel...I checked that to make sure the load sequence was correct, and it is… Rick 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 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. I put those into the site at www.holtzmanrealestate.com and I get the same problem as before… ‘jQuery’ is undefined (line 10 of jquery.cycle.2.03.pack.js) and ‘jQuery’ is undefined (line 90 www.holtzmanrealestate.com, which refers to the cycle plug-in script as defined below.) What could possibly be the issue? Rick From: Rick Faircloth [<a rel="nofollow" href="mailto:r...@whitestonemedia.com">mailto:r...@whitestonemedia.com</a>] 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… The next error message returned by IE is: ‘jQuery’ is undefined www.holtzmanrealestate.com (line 85) That’s referencing this code on index.cfm: <script type="text/javascript"> $(document).ready(function(){ $('#photoMontage').cycle({ fx: 'fade', speed: 2000, timeout: 6000 }); }); Again, this code works fine in FF and did in IE when I first wrote the code and created the site. The HTML looks like this for the photos cycling: In IE, the first photo above shows, then nothing else happens except the error message in the lower right corner of the browser window. Anyone know of anything that could be happening to cause this? Thanks, Rick --- "Those who hammer their guns into plows will plow for those who do not." - Thomas Jefferson
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 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. > > > > I put those into the site at www.holtzmanrealestate.com and I get the same > problem > > as before… > > > > ‘jQuery’ is undefined (line 10 of jquery.cycle.2.03.pack.js) > > and > ‘jQuery’ is undefined (line 90 www.holtzmanrealestate.com, which refers to > the > > cycle plug-in script as defined below.) > > > > What could possibly be the issue? > > > > Rick > > > > *From:* Rick Faircloth [<a rel="nofollow" href="mailto:r...@whitestonemedia.com">mailto:r...@whitestonemedia.com</a>] > *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… > > > > The next error message returned by IE is: > > ‘jQuery’ is undefined > > www.holtzmanrealestate.com (line 85) > > That’s referencing this code on index.cfm: > > > > <script type="text/javascript"> > > > > $(document).ready(function(){ > > > > $('#photoMontage').cycle({ > > fx: 'fade', > > speed: > 2000, > > timeout: > 6000 > > }); > > }); > > > > > > > > Again, this code works fine in FF and did in IE when I first wrote the code > > and created the site. > > > > The HTML looks like this for the photos cycling: > > > > > > > > > width="860" height="425" /> > > width="860" height="425" /> > > width="860" height="425" /> > > > > > > > > In IE, the first photo above shows, then nothing else happens except the > error > > message in the lower right corner of the browser window. > > > > Anyone know of anything that could be happening to cause this? > > > > Thanks, > > > > Rick > > > > * > --- > * > > *"Those who hammer their guns into plows will plow for those who do not." > - Thomas Jefferson* > > >
RE: [jQuery] Why would jQuery be undefined in IE, but not FF???
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. I put those into the site at www.holtzmanrealestate.com and I get the same problem as before. 'jQuery' is undefined (line 10 of jquery.cycle.2.03.pack.js) and 'jQuery' is undefined (line 90 www.holtzmanrealestate.com, which refers to the cycle plug-in script as defined below.) What could possibly be the issue? Rick 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. The next error message returned by IE is: 'jQuery' is undefined www.holtzmanrealestate.com (line 85) That's referencing this code on index.cfm: $(document).ready(function(){ $('#photoMontage').cycle({ fx: 'fade', speed: 2000, timeout: 6000 }); }); Again, this code works fine in FF and did in IE when I first wrote the code and created the site. The HTML looks like this for the photos cycling: In IE, the first photo above shows, then nothing else happens except the error message in the lower right corner of the browser window. Anyone know of anything that could be happening to cause this? Thanks, Rick --- "Those who hammer their guns into plows will plow for those who do not." - Thomas Jefferson
[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. The next error message returned by IE is: 'jQuery' is undefined www.holtzmanrealestate.com (line 85) That's referencing this code on index.cfm: $(document).ready(function(){ $('#photoMontage').cycle({ fx: 'fade', speed: 2000, timeout: 6000 }); }); Again, this code works fine in FF and did in IE when I first wrote the code and created the site. The HTML looks like this for the photos cycling: In IE, the first photo above shows, then nothing else happens except the error message in the lower right corner of the browser window. Anyone know of anything that could be happening to cause this? Thanks, Rick --- "Those who hammer their guns into plows will plow for those who do not." - Thomas Jefferson