qwery icon indicating copy to clipboard operation
qwery copied to clipboard

a query selector engine

Results 14 qwery issues
Sort by recently updated
recently updated
newest added

Issue Number #97 & #106 Is Fixed , Excessive Argument Have Been Deleted And Missing Operator Is Added.

ie6-8 has no native Array.prototype.indexOf which is called in function is () on line: if (arrayLike(selector)) return !!~flatten(selector).indexOf(el) pollyfill: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf

Hi, It seems I have an issue on IE7 using a dom node context with a html5 tag, if that makes sense... Note that if I change the tags from...

While building this package (npm install) , we are getting lot of v8 related issues , attaching the log for reference purpose. Tried installing different node versions, i.e. v10.8.0(latest), v4.x...

I think there should be `typeof` operator here `selector == 'string'`. ```js if (doc.getElementsByClassName && selector == 'string' && (m = selector.match(classOnly))) { ... // to if (doc.getElementsByClassName && typeof...

Hi, while migration packages from `bower` to `npm` I just registered that the version 4.0.0 in npm (`npm install qwery@^4.0.0`) is not the same version as 4.0.0 (`bower install qwery`)...

I just upgraded from qwery 3.x to 4 and some of my scripts started to fail with the error `obj.is is not a function`. Was this an intended feature drop?...

Any ideas on how to implement the $post and $get?

``` javascript $(".block--discussion-thread").each(function(el) { if (!$(this).hasClass("block--discussion-thread--checked")) { if (typeof $(this)[0].children[4] !== "undefined") { var blockID = "#" + $(this)[0].children[3].id; var numOfComments = $(this)[0].children.length - 4; if (numOfComments == 1) {...