[jQuery] Re: display:none not working in IE

2008-12-30 Thread Namrata Vagyani
Sorry for late reply. Actually, I want to hide option in a select box. Like e.g. Country drop down I want particular countries should be visible for particular condition. Its working fine in Mozilla (that option is not visible) but in IE option is visible. Is their any solution? Or I need

[jQuery] Re: display:none not working in IE

2008-12-30 Thread Sara
Try to use attr(visible,false) to hide your dropdownlist option On Dec 30, 12:27 pm, Namrata Vagyani vagyaninamr...@gmail.com wrote: Sorry for late reply. Actually, I want to hide option in a select box. Like e.g. Country drop down I want particular countries should be visible for

[jQuery] Re: display:none not working in IE

2008-12-30 Thread MorningZ
There is no cross browser solution to hide an option (There's a lot of things IE can't do with that tag) You'll have to remove it as you mention, or rethink your presentation to your users On Dec 30, 4:27 am, Namrata Vagyani vagyaninamr...@gmail.com wrote: Sorry for late reply. Actually,

[jQuery] Re: display:none not working in IE

2008-12-24 Thread ben.hollis
Guess you'll have to provide a more detailed example of the problem you're experiencing then. On Dec 24, 12:05 am, Namrata Vagyani vagyaninamr...@gmail.com wrote: This aslo not working :( On Wed, Dec 24, 2008 at 12:26 PM, ben.hollis ben.hol...@gmail.com wrote: That should work, but try

[jQuery] Re: display:none not working in IE

2008-12-24 Thread Kean
You might have to look at your CSS if you have declared something like display: block !important; On Dec 24, 12:34 am, ben.hollis ben.hol...@gmail.com wrote: Guess you'll have to provide a more detailed example of the problem you're experiencing then. On Dec 24, 12:05 am, Namrata Vagyani

[jQuery] Re: display:none not working in IE

2008-12-23 Thread ben.hollis
That should work, but try $(this).hide() instead. It does the same thing. On Dec 23, 10:29 pm, Debby vagyaninamr...@gmail.com wrote: Hi, css({'display':'none'}) is not working in IE. I am trying this in loop, for perticular condition i need to display none for this case, so i tried with