[jQuery] Re: .hide() not hiding elements in IE

2009-08-31 Thread nick.rathert
James and Charlie, your suggested changes worked like a charm. thanks for the help. it's much appreciated. - nick On Aug 28, 8:18 pm, Charlie wrote: > ID's must be unique, you need to use class for multiple instances > nick.rathert wrote:hi all, i'm having an interesting IE6 and IE7 issue t

[jQuery] Re: .hide() not hiding elements in IE

2009-08-28 Thread Charlie
ID's must be unique, you need to use class for multiple instances nick.rathert wrote: hi all, i'm having an interesting IE6 and IE7 issue that may just be par for the course. i'm curious if anyone else has run into this problem. here's the URL: http://jsbin.com/afede long story short,

[jQuery] Re: .hide() not hiding elements in IE

2009-08-28 Thread James
You cannot have more than one id="collapse" on the document at one time. IDs are suppose to be unique. You can use a CLASS instead. Change your HTML to: and your selector to: $("ul.collapse").hide(); On Aug 28, 8:11 am, "nick.rathert" wrote: > hi all, > > i'm having an interesting IE6 and IE7