javascript - Jquery click function not working for the button inside popover -
i trying alert message when clicked on button id tagit
. whole form appearing in bootstrap popover. added jquery alerting message,but not showing alert dialog boxes,but when call same thing in javascript showing alert. need in jquery. how can this?
var htmlcont ='<table class="pop-table"><tr><td><button class="btn btn-warning" id="tagit">filter</button></td></tr></table>'; $('[data-toggle="popover"]').popover({content: htmlcont, html: true}); $("#tagit").click(function(){ alert("hello working"); });
you need use event delegation
, so
$(document).on('click', "#tagit", function() { console.log("hello working"); });
Comments
Post a Comment