D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
pinaclec
/
public_html
/
wp-content
/
themes
/
bb-plugin
/
js
/
Filename :
jquery.showhideevents.js
back
Copy
/** * Adds events to jQuery's show and hide functions. * * http://viralpatel.net/blogs/jquery-trigger-custom-event-show-hide-element/ */ ( function( $ ) { $.each( [ 'show', 'hide' ], function( i, ev ) { var el = $.fn[ ev ]; $.fn[ ev ] = function() { var result = el.apply( this, arguments ); this.trigger( ev ); return result; }; } ); } )( jQuery );