mobile - Disable Bootstrap tooltips on xs screens -


i trying disable tooltips in booststrap on xs screens code:

function menutooltip() {     if (window.matchmedia("(min-width: 768px)").matches) {         $('.menu a').tooltip();     } } menutooltip(); $(window).resize(menutooltip); 

works fine except if resize window keeps showing tooltips on mobile devices. seems wrong $(window).resize(menutooltip); don't see anything. help?

seems had add else { $('.menu a').tooltip('destroy') } make work...


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -