[jQuery] Reverse a collection of jQuery elements.

2009-05-27 Thread simshaun
I need to reverse the collection jQuery returns when I use $("#some_selector").parents("li"); in order to build a path. Is this doable? It'd be nice if jQuery had a reverse() method.

[jQuery] Re: [listnav] in Chrome

2009-03-03 Thread simshaun
> so, let me know and I'll get a copy to you. > > Thanks, > Jack > > simshaun wrote: > > Using jQuery 1.3.1, > > This question refers to the ListNav plugin found here: > >http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx > > > I've got a

[jQuery] Re: [listnav] in Chrome

2009-02-27 Thread simshaun
#x27;ll get a copy to you. > > Thanks, > Jack > > simshaun wrote: > > Using jQuery 1.3.1, > > This question refers to the ListNav plugin found here: > >http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx > > > I've got a fairly large dataset on my p

[jQuery] [listnav] in Chrome

2009-02-04 Thread simshaun
Using jQuery 1.3.1, This question refers to the ListNav plugin found here: http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx I've got a fairly large dataset on my page consisting of ~1000 LI elements. Each letter of the alphabet contains ~40 LI elements. Each LI element contains a varying amoun

[jQuery] Re: [validate] onkeyup for single field

2009-01-29 Thread simshaun
I tried adding onkeyup="return false;" to the field. Doesn't seem to work though. The solution I came up with is to add this in the config array. onkeyup: function(element) { if ($(element).attr('name') != 'username') { $.validator.defaults.onkeyup.apply(this,arguments); } } It

[jQuery] [validate] onkeyup for single field

2009-01-29 Thread simshaun
This question is in regards to the jQuery validation library http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Is it possible to turn off onkeyup for a singe field instead of the entire form? It'd be cool if I could just put onkeyup=false within the rules array for that field.

[jQuery] Re: Google Analytics breaks jQuery.

2008-12-17 Thread simshaun
/ return false, this is jQuery's way of preventing default or > bubbling >   return false; > > }); > > Hope this helps > > On Dec 16, 11:51 am, simshaun wrote: > > > I have a page where I am using jQuery's load function to inject HTML > > into a div c

[jQuery] Google Analytics breaks jQuery.

2008-12-16 Thread simshaun
I have a page where I am using jQuery's load function to inject HTML into a div container. Right underneath the opening body tag, I've written a script that binds an onClick event to all tags. The event fires e.preventDefault(), reads the href attribute, and loads that href into a div container.

[jQuery] Re: Access Elements Rendered in a Thickbox

2008-12-16 Thread simshaun
I can't directly answer your question, but the reason that adding the event listener to the hidden button on document ready does not work is this (or at least this is what the library I was working with did): When the Thickbox loads, it does not "directly" reference the container it's loading. I