Guest User

Untitled

a guest
Apr 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. (function($) {
  2. $.fn.myplug = function(options) {
  3.  
  4. var _this = this[0];
  5. switch(options) {
  6. case 'Test1':
  7. _this.innerHTML = 'Test1!';
  8. break;
  9. default:
  10. _this.innerHTML = 'Test2';
  11. break;
  12. }
  13.  
  14. return this;
  15. };
  16.  
  17. })(jQuery);
Add Comment
Please, Sign In to add comment