simpleCart(js)

items
Items:
Total:

.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

  1. There are no comments for this entry yet.
Commenting is not available in this channel entry.