Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 358 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 358 Bytes

jQuery Plugin Template

  • Based on Twitter Bootstrap 2.0 plugins
  • Uses jQuery's data API
  • Allows the calling of methods in the plugin via the element

Use

// Initialize
$('.myelement').myplugin({setting1: 1, setting2: 'two'});

// Call a method on the element later on in the code
$('.myelement').myplugin("doSomething");