/ Published in: JavaScript
It works for me
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('.dropdown-toggle').click(function(e) { e.preventDefault(); setTimeout($.proxy(function() { if ('ontouchstart' in document.documentElement) { $(this).siblings('.dropdown-backdrop').off().remove(); } }, this), 0); });
URL: http://qaru.site/questions/817615/drop-down-menu-not-working-on-mobile-devices#2991010