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
Post a Comment