[jQuery] ajaxStart() and ajaxStop(): Any way to know the type of the request?

2009-07-22 Thread Rafael Soares
one, I would check the request.type property, for instance. Is there any way to accomplish that? Other than setting the callback for each individual request. Thanks. Rafael Soares

[jQuery] Re: Clone problem in IE...

2008-11-05 Thread Rafael Soares
the inverse: append the original input to the new form, then clone it and then append the clone to the original form. It's kinda messy, but worked for me. Of course I'm doing this only in IE, other browsers use the normal procedure. Hope it helps. Rafael Soares On Thu, Jul 24, 2008 at 12:10, Marcus Eby

[jQuery] Re: Case Insensitive Selector

2008-05-28 Thread Rafael Soares
OK, I got it, the only problem is that the value comes from a variable. Is there any way to use a variable as a regex? On Thu, May 22, 2008 at 12:28 PM, Scott Sauyet [EMAIL PROTECTED] wrote: Karl Swedberg wrote: I agree that a filter function is probably the way to go, but a regular

[jQuery] Case Insensitive Selector

2008-05-20 Thread Rafael Soares
Hi! I'm using a [attribute*='value'] selector, and the only problem is that I need it to be case insensitive. Is there any way I could do it? Thanks.

[jQuery] Re: get value of checked checkboxes into a list

2008-03-07 Thread Rafael Soares
I'm trying exactly the same. $(input:checkbox:checked); returns a set of jQuery elements $(input:checkbox:checked).val(); returns the value of the first element in the set. I really wanted to get an array with all the values, or even a string, without the need to iterate over each of the