put-selector icon indicating copy to clipboard operation
put-selector copied to clipboard

A high-performance, lightweight function for creating and manipulating DOM elements with succinct, elegant, familiar CSS selector-based syntax

Results 6 put-selector issues
Sort by recently updated
recently updated
newest added

I have encountered the following error: ``` Uncaught TypeError: Cannot set property className of # which has only a getter (anonymous function) @ put.js:145 put @ put.js:79 ``` userAgent: "Mozilla/5.0...

Here's the simplest repro: ``` listItem = put(document.body, "div"); put(listItem, "input[type=text][title=[surrounded by brackets]]"); ``` https://jsfiddle.net/tannermeans/utjtgaa3/7/ Seems like these characters should be allowed - or is there another way to do...

So far, put-selector has been great. I haven't found anything it couldn't do... until now. I have an application where I create text boxes for a search, and I inject...

For SitePen/dgrid#1171 When trying to build `dgrid stable` r.js simply fails to build it citing an "Anonymous Define". From the dgrid code I tracked it to https://github.com/kriszyp/put-selector/blob/master/put.js#L3 Why wrap this...

I ran into some problems using the RequireJS optimizer on this module, it inserts the line `define("put", function(){});` after the `put.js` source code in the optimized output. Somehow the very...