[jQuery] Re: problem with hide()

2008-01-11 Thread Steve Clason
Nicolas wrote: > Hello people; i'll go straight to my problem; when i load a certain > page inside it's $(document).ready(function(){ }); function i hide > some tables which (some) have images inside. The problem is that the > tables take a while to completly hide at the beggining, as i wish, and

[jQuery] Re: problem with hide()

2008-01-11 Thread erdibalint
I am not sure I get you right but if you want your tables hidden when the page is downloaded initially why not render them with display:none at the beginning and show them when it is needed by an elegant jquery instruction? (something like $('table.your_class_here').show() ) Balint On Jan 11, 6: