How can I add an onclick event to a newly created button in JS or Jquery?

94 Views Asked by At

I created a button with id through function .append(). Now I don't know to add any onclick event to it using its id. Here's what I have.

<html>
<body>
<div id="indiv"></div>
<script>
$('#indiv').append('<button id="btn1">press</button>'); 
$('#btn1').on('click', function(){
  alert('Hi!');
});
</script>
3

There are 3 best solutions below

2
On

This works fine.

$('#indiv').append('<button id="btn1">press</button>'); 
$('#btn1').on('click', function(){
  alert('Hi!');
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<html>
<body>
<div id="indiv"></div>
</body>
</html>

0
On

TRY this

$(document).on('click','#btn1',function(){
 alert('Hi!'); 
});


   
0
On

This is how you would solve it with plain vanilla JS (Since your question covers both Jquery and JS):

function myscript() {
document.write("My printout");
}
<html>
  <body>
    <div id="indiv">
      <button onclick="myscript()">My Button</button>
    </div>
  </body>
</html>