When your thickbox only keeps loading with the black (opacity) screen. Then it could be because you are using the latest jquery 1.3.1.
FIX: open modules/thickbox/thickbox.js
delete the two @ signs in the source
I had them on
1) rule 81
TB_TempArray = $('a[@rel=' + imageGroup + ']').get();
REPLACE WITH
TB_TempArray = $('a[rel=' + imageGroup + ']').get();
AND
2) rule 110
var tb_links = $('a[@class="thickbox"]');
REPLACE WITH
var tb_links = $('a[class="thickbox"]');
Go and clear the cache trough the admin and everything should work like a charm.
[this is not a issue but a fix, didnt know where else to post it]
Comments
Comment #1
frjo commentedThis has been committed to 6-dev already. See https://drupal.org/node/434660.
Comment #2
frjo commented