I'm using the toggle effect to show/hide a table row in a list of
events (example - http://www.gigcatcher.co.uk/town/3885-Brixton_in_London)
The hidden row contains links to buy tickets for each event and
everything works fine except when using IE6-8.

The toggle effect appears to work ok in IE but the links are almost
all inactive, so users are unable to click through to get tickets. The
odd thing is that it doesn't appear to affect all of the links, as
about 10% of them (seemingly at random) are active as they should be.

Is there something I need to be aware of when using this in IE?

Here's the function controlling the toggle effect, which also takes
into account the current class of the '+/-' button div. I'm by no
means a javascript expert so any help on this would be great :)

function open_close(event_id, colour) {
        var div_id = 'button_'+event_id
        var event_div = document.getElementById(div_id)
        var open = 'open_'+colour
        var close = 'close_'+colour

        Effect.toggle(event_id,'slide', {duration:0})

                if( event_div.className== open ){
                        event_div.className= close
                }

                else{
                event_div.className= open
                }
}

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to