dom icon indicating copy to clipboard operation
dom copied to clipboard

DOM traversal, manipulation and events aggregate library (like jQuery)

Results 18 dom issues
Sort by recently updated
recently updated
newest added

When you have components that don't reside in the same place (ie github) and depend on component/dom, this line of code can break reuse. We ran into this today. 'selector...

too lazy to look into it right now but seems like these should be equivalent in my case: ``` js dom('#logs tbody > tr').remove(); dom('#logs tbody').empty(); ```

While working on this lib, I thought it might be worthwhile to change mocha from a git submodule to a component development dependency.

Changes: - attributes can now be set (and unset) with an object of key value pairs - added tests (passing) - updated docs

I'm trying to use event delegation in dom library, but it's not work properly. I mean that event isn't bubbling up in dom tree. Here's example: http://jsbin.com/mipoyica/1/ Event isn't bubbling...

i'm not a fan of relying on `this` inside iterators because it feels really magicky, and i think its one of the bad parts of jquery. for [some of the...