light-weight JSlib compatible with jQuery/Zepto API
<script src="dist/core.js"></script>
$ bower install core.js
text() ⇒ string
text(content) ⇒ self
html() ⇒ string
html(content) ⇒ self
val() ⇒ string
val(value) ⇒ self
$('li').eq(0) //=> only the first list item
$('li').eq(-1) //=> only the last list item
get() ⇒ array
get(index) ⇒ DOM node
parent([selector]) ⇒ collection
parents([selector]) ⇒ collection
children([selector]) ⇒ collection
find(selector) ⇒ collection
find(collection) ⇒ collection v1.0+
find(element) ⇒ collection v1.0+
attr(name) ⇒ string
attr(name, value) ⇒ self
removeAttr(name) ⇒ self
hasClass(name) ⇒ boolean
addClass(name) ⇒ self
removeClass([name]) ⇒ self
toggleClass(names, [setting]) ⇒ self
css(property) ⇒ value
css([property1, property2, ...]) ⇒ object v1.1+
css(property, value)
show() ⇒ self
hide() ⇒ self
offset() ⇒ object
width() ⇒ number
width(value) ⇒ self
height() ⇒ number
height(value) ⇒ self
on(type, [selector], function(e){ ... }) ⇒ self
off(type, [selector], function(e){ ... }) ⇒ self
off(type, [selector]) ⇒ self
off() ⇒ self
trigger(event, [args]) ⇒ self