[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" wrote: > This aslo not working :( > > On Wed, Dec 24, 2008 at 12:26 PM, ben.hollis wrote: > > > That should work, but t

[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 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 this > $(this).css({'

[jQuery] Re: hiding a using html select (drop down)

2008-12-23 Thread ben.hollis
Try using "change" instead of "click". -Ben On Dec 22, 8:44 pm, "Louie Miranda" wrote: > I tried to hide the using the toggle() function below. > > javascript code > > > > > $(document).ready(function() { > > >         $("#dropdown").click(function() { > >         $("#divarea").toggle(); > >

[jQuery] Improvements to jQuery's Trac installation?

2008-12-23 Thread ben.hollis
Hey guys, I'm finding it really hard to use Trac to keep tabs on jQuery development and the bugs I've filed. There are just a couple of weird things about jQuery's instance of Trac that make things hard: * I don't get emailed when tickets are updated. Maybe this problem is limited to just me, but

[jQuery] Need documentation for error status strings in $.ajax:error

2008-12-23 Thread ben.hollis
Looking through the source, I see that the "textStatus" parameter of $.ajax's error callback can be one of the following values: * timeout - when your specified timeout is exceeded * error - http error, like 404 * notmodified - when requested resource was not modified since last reque

[jQuery] Re: Extract Dropdown Menu Items to Array?

2008-12-23 Thread ben.hollis
Try something like this: $('option', mySelect).map(function() { return $(this).text(); }).get(); That'll go over every option in your select, grab the text, and then use get() to get a normal array out of it. On Dec 22, 11:47 pm, Vik wrote: > Is there a way to extract the text of all the