items
.ELEMENT
This is a class that represents a collection of DOM elements. It is a wrapper for the element objects created in the javascript library of choice. You can create a new element by using simpleCart.$() or simpleCart.$create():
var lis = simpleCart.$( 'li' ); // collection of all li elements var new_li = simpleCart.$create( 'li' ); // creates new element of the given tag
Comments
- There are no comments for this entry yet.