Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- d = document;
- $ = {
- id: function (x) {
- return d.getElementById(x);
- },
- class: function (x) {
- return d.getElementsByClassName(x);
- },
- name: function (x) {
- return d.getElementsByName(x);
- }
- };
- /*
- EXs: $.id('lol').innerHTML;
- $.class('test')[0].src;
- */
Advertisement
Add Comment
Please, Sign In to add comment