i downloaded thickbox v3.1 code today and had a problem with image groups. when i clicked on a thumbnail, only the loader was displayed, but no image appeared.
so i checked the code and found out, that the deprecated jquery notation $('a[@rel='+imageGroup+']') is still used. so the image gallery couldn't work in combination with jquery version >1.2.
i changed the code segment to $('a[rel='+imageGroup+']') and now everything works fine.
thanks a lot, i had the same problem too. it's really annoying, for non-expert users it's not possible to reach a solution, why don't update the files linked in the download block?
just to notice for other people a little stupid like me, that you should also lookup the code with $("a[@rel="+imageGroup+"]"), meaning double quotes instead of single quotes:-)
and also, as I just noticed, if you use the compressed version, you won't find that code ($('a[@rel='+imageGroup+']'). At least, I dodn't. But that's fine as long as you do like I did: global replace of "[@" with "[".
(hum)
ok, thats a little "uber-brute" way of working, but, it worked for me (shame on me). I'll leave the project owner the pleasure of updating it's own one :-)
Can someone please tell me the file that needs to be edited? I have looked through thickbox.js and jquery.js and cannot find the imageGroup code that needs to be changed. I am currently using jquery 1.3.2.