Is there a way to convert: $("#first").find("input").not("td td input")
(http://jsfiddle.net/4K9TG/)
...into a querySelectorAll selector?
(continuing from jQuery: find() children until a certain threshold element is encountered)
Is there a way to convert: $("#first").find("input").not("td td input")
(http://jsfiddle.net/4K9TG/)
...into a querySelectorAll selector?
(continuing from jQuery: find() children until a certain threshold element is encountered)
not
is simply a filter over a collection that satisfies a condition. See if this helps.
var query = function(selector, element) {
element = element || document;
return [].slice.call(element.querySelectorAll(selector));
};
var not = function(selector) {
var exclude = query(selector);
return function(element) {
return exclude.indexOf(element) == -1;
};
};
var inputs = query('#first input').filter(not('td td input'));
Here's a demo: http://jsbin.com/EJAyiSux/1/edit
You can implement most jQuery methods as simple filter
and map
sequences with higher-order functions, as shown above. After all, jQuery collections are just arrays of elements.
I ended up making a function to do this.
http://jsfiddle.net/4K9TG/2/: