Just read the release notes for JQuery 1.3 as I was having a similar issue:
"The '@' in [...@attr] has been removed. Deprecated since 1.2 this old syntax no longer works. Simply remove the @ to upgrade." The thickbox code on line 78 uses @rel to find all the gallery items with the same rel tag. If you remove the @ symbol it works with JQuery 1.3.2. On Mar 27, 12:57 am, Devin <devin.corm...@gmail.com> wrote: > Switching to an older version of jquery fixed the problem right > away. Thank you so much! > > Resolved. > > On Mar 26, 9:44 am, Bert <bert_le...@hotmail.com> wrote: > > > > > Thickbox gives this error with the latest JQuery version. use version > > 1.2.6, worked for me that way. > > > greetzwww.twitter.com/Be_Bert > > > On 25 mrt, 15:46, Devin <devin.corm...@gmail.com> wrote: > > > > This is my code. The problem I'm having is that when I click the > > > thumbnail all I see the loading bar. It just hangs there animated. > > > Interestingly if I take the rel tag out of the images it works, but it > > > doesn't show the previous and next options in the thickbox. > > > > Suggestions? > > > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> > > > <html> > > > <head> > > > <script type="text/javascript" src="thickbox/js/jquery-latest.js"></ > > > script> > > > <script type="text/javascript" src="thickbox/js/thickbox- > > > compressed.js"></script> > > > <link rel="stylesheet" href="styles/thickbox.css" type="text/css" > > > media="screen" /> > > > <meta http-equiv="content-type" content="text/html; > > > charset=windows-1250"> > > > > <title>Lab6b - jquery</title> > > > </head> > > > > <body> > > > <a href="images/plant1.jpg" title="add a caption to title attribute / > > > or leave blank" class="thickbox" rel="gallery-plants"><img src="images/ > > > plant1_t.jpg" alt="Plant 1" /></a> > > > <a href="images/plant2.jpg" title="add a caption to title attribute / > > > or leave blank" class="thickbox" rel="gallery-plants"><img src="images/ > > > plant2_t.jpg" alt="Plant 2" /></a> > > > <a href="images/plant3.jpg" title="add a caption to title attribute / > > > or leave blank" class="thickbox" rel="gallery-plants"><img src="images/ > > > plant3_t.jpg" alt="Plant 3" /></a> > > > <a href="images/plant4.jpg" title="add a caption to title attribute / > > > or leave blank" class="thickbox" rel="gallery-plants"><img src="images/ > > > plant4_t.jpg" alt="Plant 4" /></a> > > > </body> > > > </html>- Hide quoted text - > > - Show quoted text -