Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 237 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 237 Bytes

javascript dom manipulation

jQuery Syntax Yet Another Alternative

functions.js and polyfill.js (optional) are required.

doc(function() {
  doc('button').on('click', function() {
    alert('here');
  });
});