I am working with Twitter Bootstrap and ran into something I could not fix when testing on iPad and iPhone. On mobile (at least those devices) you need to click to engage the t
Main concept is that make popover manually on mobile device
$(document).ready(function() { if ('ontouchstart' in window) { $('[data-toggle="popover"]').popover({ 'trigger': 'manual' }); } });