Advertisement
Guest User

TUTO MASTIO

a guest
Dec 7th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. (function($)
  2. {
  3.  
  4.  
  5. $.fn.notrePlugInInutile=function(options)
  6. {
  7. var defauts= {
  8. "param1":"valeur1",
  9. "param2":"valeur2",
  10. };
  11.  
  12. var param=$.extend(defauts,options); //fusion des 2 objets defauts et options
  13.  
  14. this.each(function()
  15. {
  16.  
  17. });
  18.  
  19. return this;
  20. };
  21.  
  22. console.log("Bonsoir !");
  23.  
  24. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement