Forum Moderators: open
<div class="extra_sub_item"><a href="#" onclick="timediv('block')">more...</a></div>
The code it points to:
function timediv(disp){
var obj=document.getElementById('timewrap')
var obj2=document.getElementById('timeclose')
wrapcover(disp);
obj.style.display=disp
obj2.style.display=disp
}
I'm trying to take a 'hidden' div with style of 'display="none"' and change it via javascript to "block", and then back again if I click the 'close' link.
This works in IE and FF, but in Opera, it acts like a dead link. Any suggestions?
If you want to see that code in action to see what I'm talking about, the site is [crosswindschurch.net....] The side bar stuff on the right is using this function. In IE and FF the thing works great, but in Opera it's a no go.