Fix boot click on bootstrap not working with jquery

I use the code for bootstrap popover as follows:

<a href="javascript:void(0);" class="btn btn-primary btn-sm" rel="popover"  data-placement="top"
                        data-original-title="<i class='fa fa-fw fa-users'></i> Enter New Investor Group"
                        data-content="<div class='smart-form'><div class='col-sm-10'><label class='input'><input type='text' name='NewInvestor' placeholder='Investor Group Name' id='NewInvestor' /></label></div><div class='col-sm-2'><button id='btntest' class='btn btn-primary btn-sm assignedGroup' type='button' data-target-id='NewInvestor' >ADD</button></div></div><div class='clearfix'></div><br/>"
                        data-html="true">Add</a>

I would like to trigger an event when a button is clicked in jquery. The code is as follows:

$("#btntest").click(function () {
        alert("You click on button");
    });

Jsfiddle

What is the reason that my code is not working?

I will appreciate your help in advanced versions.

+4
source share
2 answers

Assuming your code displays correctly, try the code below.

$(function(){
   $(document).on('click',"#btntest",function () {
      alert("test button clicked");
   });
});

Edited

Take a look at my JsFiddle and see if it works http://jsfiddle.net/jb5fexp3/

+5
source

Check the Bootstrap Documentation for popovers again :

<button type="button" class="btn btn-lg btn-danger" data-toggle="popover" title="Popover title" data-content="And here some amazing content. It very engaging. Right?">
    Click to toggle popover
</button>

and in your JS:

$(function () {
    $('[data-toggle="popover"]').popover()
})
+3
source

All Articles