Light weight jQuery like library, limited on feature, but you will find most of the DOM manipulation functions in this library. This library provides number of reusable javascript function which you can utilise in your project.
- ready function: query(document).ready(function(){//code});
- find function: query(selector).find(child-selector)
- first function: query(selector).first()
- addClass
- removeClass
- hasClass
- append: query(selector).append(html string)
- html: query(selector).html(html string)
- on: query(selector).on(event, callback)
- off: query(selector).off(event, callback)
- each: query(selector).each(element, index)
- trigger: query(element).trigger(event, data)
- prop: query(element).prop("checked",true);
- attr
- data
- css