Hi there.

I have played around a bit with hide() and show() the last few days
and ended up creating a function to show certain tables on a page.

function toggleShow(id) {
        $('.tbl').hide('slow');
        $('#' + id).show('slow');
}
$(document).ready(function() {
        $('#index').show('slow');
});

There are four tabled and they all have the class tbl and a unique id,
then I call the function using toggleShow('guestbook') and it works.

The problem I am having is that I want to queue the hide and show so
it doesn't start to show during the hiding as it does now, it doesn't
show that much on firefox or safari but in ie the hiding table jumps
below the other one and the hiding and showing is done at the same
time.

I read a bit of examples of queue's but couldn't get them to work, so
hopefully someone here can help me...

Reply via email to