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
jQuery(document).ready(function($) { | |
/** | |
* Demo Section : Mettre en avant ses alternatives textuelles sur les devices tactiles. | |
**/ | |
$("a[data-toggle='tooltip'], img[data-toggle='tooltip']").on("click",function(){ | |
if(!$('.tooltip').hasClass('in')){ //Si l'info-bulle n'est pas visible. | |
$(this).tooltip("show"); | |
return false; // Empecher le navigateur d'ouvrir la destination du lien. |