How to bind bootstrap popover on dynamic elements

Update If your popover is going to have a selector that is consistent then you can make use of selector property of popover constructor. var popOverSettings = { placement: ‘bottom’, container: ‘body’, html: true, selector: ‘[rel=”popover”]’, //Sepcify the selector here content: function () { return $(‘#popover-content’).html(); } } $(‘body’).popover(popOverSettings); Demo Other ways: (Standard Way) Bind … Read more