Blockster - fixed for jQuery v1.4.3
Thanks for the reports that Blockster wasn't working with the latest release of jQuery, 1.4.3. This is now fixed, and you can re-download the source here.
I would hesitate to say this was a jQuery bug, but it certainly seemed like one. For some reason, values set via the .css() method were being set, but read back as 0, e.g.
1$('#something').css({left: 15+'px', top: 20+'px'});
2alert($('#something').css('left')); //alerts 0px, not 15px
In jQuery 1.4.2, there was no issue. Anyway, some fudge later involving tracker variables, this is fixed. Phew.
Comments (2)
Marcus Tucker, at 28/10/'10 16:23, said:
Mitya, at 28/10/'10 16:33, said: