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
| /* Simple Bootstrap jQuery Exit Pop | |
| * Trigger an existing Bootstrap modal on mouseleave() | |
| */ | |
| /* This first version uses a variable to determine when to trigger pop. */ | |
| (function(){ | |
| var pop = false; /* it has not pop'd */ | |
| jQuery(document).mouseleave(function(){ | |
| if(!pop || typeof pop === 'undefined'){ | |
| jQuery('#myModal').modal('show'); /* show the modal */ |
NewerOlder