I have a question about bootstrap popover - javascript plugin. Popover has got text input inside, and when viewing this page on normal browser, I can click on this input and enter data.
But in android, when I open popover and click input, the keyboard appears but popover disappers.
On iOS popover works as expected, but on Android it dissapears. My code is generic, and simple:
$('.logMe').popover({
html: true,
placement: 'bottom',
content: function() {
return $('#login').parent().html();
}
})
Thank You for any advice.