Skip to content

Instantly share code, notes, and snippets.

@raiden808
Created May 9, 2018 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raiden808/7f8bb56448ba64310f0f345f4ef2d6b9 to your computer and use it in GitHub Desktop.
Save raiden808/7f8bb56448ba64310f0f345f4ef2d6b9 to your computer and use it in GitHub Desktop.
$('.test').click(function(){
alert("The paragraph was clicked.");
$( ".container" ).append( "<button class='append_button'>Append Button</button>" );
});
$('.append_button').click(function(){
alert("I'm an append button.");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment