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

frjo’s picture

Status: Active » Closed (duplicate)
frjo’s picture

Version: 6.x-1.2 » 6.x-1.x-dev
Category: bug » task
Status: Closed (duplicate) » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.