|
|
|
|
|
by joestelmach
5170 days ago
|
|
Though I did a poor job at documenting it, $.el is actually a function that accepts a tag name as the first parameter. The following two snippets are equivalent: $.el.div({className : 'foo'});
$.el('div', {className : 'foo'});
|
|