[jQuery] Interface: Question about Blind Up/Down

2006-09-02 Thread Stefan Petre
It was a bug in Blind, fold and open/close. I fixed this, download the Interface again ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Interface: Question about Blind Up/Down

2006-09-02 Thread Jim Davis
Stefan, Thanks for the update. It works great now. Jim On 9/2/06, Stefan Petre [EMAIL PROTECTED] wrote: It was a bug in Blind, fold and open/close. I fixed this, download the Interface again ___ jQuery mailing list discuss@jquery.com

[jQuery] Interface: Question about Blind Up/Down

2006-09-01 Thread Jim Davis
I am trying to use blind down and blind up with a div that is hidden when the page loads. My demo: http://www.jimdavis.us/demos/whidbey/blindtest.html The blind up and blind down functions were working great until I added the rule display: hidden to the addText div in order to have the div out

Re: [jQuery] Interface: Question about Blind Up/Down

2006-09-01 Thread Stefan Nagtegaal
Op 1-sep-2006, om 18:05 heeft Jim Davis het volgende geschreven: I am trying to use blind down and blind up with a div that is hidden when the page loads. My demo: http://www.jimdavis.us/demos/whidbey/blindtest.html The blind up and blind down functions were working great until I added

Re: [jQuery] Interface: Question about Blind Up/Down

2006-09-01 Thread Klaus Hartl
Stefan Nagtegaal schrieb: Op 1-sep-2006, om 18:05 heeft Jim Davis het volgende geschreven: I am trying to use blind down and blind up with a div that is hidden when the page loads. My demo: http://www.jimdavis.us/demos/whidbey/blindtest.html The blind up and blind down functions were

Re: [jQuery] Interface: Question about Blind Up/Down

2006-09-01 Thread Stefan Nagtegaal
Inside my external stylesheet.. #id-is-hidden-by-default { display: none; } or you can also try: #id-is-hidden-by-default { visibility: hidden; } Steef Op 1-sep-2006, om 19:26 heeft Jim Davis het volgende geschreven: Stefan, Adding display: none; to the addText div dosen't work. I

Re: [jQuery] Interface: Question about Blind Up/Down

2006-09-01 Thread Karl Swedberg
On Sep 1, 2006, at 1:26 PM, Jim Davis wrote: Stefan, Adding display: none; to the addText div dosen't work. I also tried creating a class: .hideit { display: none; } and changed the html to: div id=addText class=hideit That dosen't work either. You could also try hiding the DIV with jQuery

Re: [jQuery] Interface: Question about Blind Up/Down

2006-09-01 Thread Jim Davis
Karl, Thanks for the help. Your suggestion solved the problem. Jim On 9/1/06, Karl Swedberg [EMAIL PROTECTED] wrote: You could also try hiding the DIV with jQuery when the DOM initially loads: $(document).ready(function() { $('div.hideit').hide(); }); This would have the added