Hello. I was doing some form validation today and I noticed thatthere's no filter for text areas. The :input filter includes itbut :text excludes it and it doesn't have a filter of it's own.Personally I think that :text should include text areas and barringthat, there should be a filter for text areas just like for all theother big form input categories.Kindly, ...
I checked out the latest version of Sizzle and ran the 2 queries belowin slickspeed against the W3C document. I originally began withbody :not(div, span, li) but realized that jQuery 1.2.6 didn't supportit.body :not(div)body :not(.example)They are a lot slower when compared to jQuery 1.2.6.Might this be related to the fact that :not in Sizzle accepts complexselectors?- Kean
One thing I really love about jQuery is the ability to extend it easily. Like adding a new jQuery.expr which I have used to match special attribute to interface usage on my site. After creating a new filter for the subselector I realized that it could not be used with out patching jQuery, making it useless/difficult for less advanced users or ...
I'm trying to use form elements to filter data. In this case I'm using checkboxes, but select multiple and radio buttons could also be incorporated later. This code works, but the clumsy use of 'class' (presumably instead of 'data-') means I can't use spaces in media/theme names - which is a severe limitation. Unfortunately I can't figure out how to adapt ...
I have been adapting a JQuery WordFilter script to allow a user to use multiple select menus to filter a collection of divs. It is working in Firefox, Safari, Chrome and Opera, but in IE all the divs disappear and none come back and it thinks that no divs match it's requirements. I have no idea why this is happening, any ...
I have some form fields which are named in such a way as to be submitted as an array, thus: etc. I am trying to access these fields using jQuery: $('#myform').find('input').filter('[name=my_fields[]]'); Unfortunately this seems to ignore the filter completely because of the square brackets. I have tried escaping them ...