I am using Twitter Bootstrap popover and I do not know how to change the dynamic location of the popover when resizing the browser window. The problem is that when I resize the window, the popover remains in a fixed position. I want to defer popover like other html elements.
code:
$('#popover1').popover({ html : true, content: function() { return $("#form").html(); }, placement: "top" });
source share