This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function ($, window) { | |
| var methods = { | |
| init : function(options) { | |
| return this.each(function (){ | |
| // Do things for each element within the passed selector | |
| }); | |
| } | |
| public_method: function(options) { | |
| return this.each(function (){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function ($) { | |
| var data_store_var = 'jq-plugin'; | |
| var defaults = { | |
| username: '', | |
| password: '', | |
| value: '', | |
| init: false, | |
| } |