vanilla-js
Version:
jQuery-like Aliases (NOT Wrappers) to HTML5 Selector API / Raw Document
19 lines (10 loc) • 339 B
JavaScript
// Generated by CoffeeScript 1.4.0
var $;
$ = document;
$.liveId = $.getElementById;
$.liveTag = $.getElementsByTagName;
$.liveClass = $.getElementsByClassName;
$.one = $.querySelector;
$.all = $.querySelectorAll;
Element.prototype.one = Element.prototype.querySelector;
Element.prototype.all = Element.prototype.querySelectorAll;