A suggestion/inquiry was made that a div on the website be made into a popover (the hover over) kind. But how does this functionality occur on a mobile version of the site. According to the twitter bootstrap page, it has three trigger options: trigger string 'hover' how tooltip is triggered - hover | focus | manual How would these occur?:
- Hover
- Focus
- Manual
$(‘#example’).popover(options)
I dont have a readily available tablet or mobile device to test, and the behavior is not well documented for this type of viewing/access.
hoverwill trigger when the user clicks on#example. “Manual” will show up since you are personally showing or hiding it in JavaScript.