Category: jQuery

  • How to solve MooTools and Bootstrap tooltip conflict

    How to solve MooTools and Bootstrap tooltip conflict

    Issue: Elements with tooltips disappear at mouse hover ended Details: Mootools conflict with Bootstrap Jquery Solution: You can add the following code to solve this issue:

  • How to create equal height divs via jQuery

    How to create equal height divs via jQuery

    Here is the code snippet to create equal height divs: jQuery(document).ready(function(){ var first_div_height = jQuery(‘.first-div’).height(); var second_div_height = jQuery(‘.second-div’).height(); if(first_div_height < second_div_height){ jQuery(“.first-div”).css({“height”: jQuery(“.second-div”).height() }); }else{ jQuery(“.second-div”).css({“height”: jQuery(“.first-div”).height() }); } });