Guest User

Untitled

a guest
May 18th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.32 KB | None | 0 0
  1. "use strict"
  2. !function( $ ){
  3.     $.fn.dropdown = function (type) {
  4.         return this.one(type, function (event)
  5.         {
  6.             event.preventDefault();
  7.             $(this).toggleClass("open");
  8.         })
  9.     }
  10.  
  11.     $(function () {
  12.         $('.clickdrop').dropdown( 'click' )
  13.         $('.hoverdrop').dropdown( 'hover' )
  14.     })
  15.  
  16. }( window.jQuery || window.ender );
Add Comment
Please, Sign In to add comment