Hi !
I tried to fix the problem from this thread in the bugtracker, but it does not work:
Lightbox doesn't work in IE 7.
Here is a cut'n'paste from this site that works:
http://www.huddletogether.com/forum/comments.php?DiscussionID=600
irst put the following code on top of the lightbox.js:
var IE = document.all?true:false;
function GiveFalse?() {
if(IE) {
event.returnValue = false;
}
return false;
}
Now search for the following line:
anchor.onclick = function () {myLightbox.start(this); return false;}
and change it to:
anchor.onclick = function () {myLightbox.start(this); GiveFalse?();return false;}
best regards
Ollie
edited by: ollborg, Sep 01, 2008 - 11:45 AM