Last active
November 25, 2016 05:49
-
-
Save akirattii/818b1b7c449d87da36372e396d4661d0 to your computer and use it in GitHub Desktop.
This code adds `on('show'` event of jquery
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
| <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc=" crossorigin="anonymous"></script> | |
| <button id="btnShow">Show</button> | |
| <button id="btnHide">Hide</button> | |
| <div class="container"> | |
| <div id="foo"> | |
| I am #foo | |
| </div> | |
| </div> | |
| <div id="console"> | |
| </div> | |
| <script> | |
| //The magic code to add show/hide custom event triggers | |
| (function($) { | |
| $.each(['show', 'hide'], function(i, ev) { | |
| var el = $.fn[ev]; | |
| $.fn[ev] = function() { | |
| this.trigger(ev); | |
| return el.apply(this, arguments); | |
| }; | |
| }); | |
| })(jQuery); | |
| //on Show button click; show the #foo div | |
| $('#btnShow').click(function() { | |
| $('#foo').show(); | |
| }); | |
| //on Hide button click; hide the #foo div | |
| $('#btnHide').click(function() { | |
| $('#foo').hide(); | |
| }); | |
| //Add custom handler on show event and print message | |
| $('#foo').on('show', function() { | |
| $('#console').html($('#console').html() + '#foo is now visible' + '<br>') | |
| }); | |
| //Add custom handler on hide event and print message | |
| $('#foo').on('hide', function() { | |
| $('#console').html($('#console').html() + '#foo is hidden' + '<br>') | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment