Guest User

Untitled

a guest
Jan 24th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $(document).ready(function() {
  2. $("a").on("click", function(){
  3. $(".add").append('<ul class="lista">' +
  4. '<li>Coffee</li>' +
  5. '<li>Tea</li>' +
  6. '<li>Milk</li>' +
  7. '</ul>'
  8. );
  9. });
  10.  
  11. $(".lista li").on("click", function(){
  12. alert("test");
  13. });
  14.  
  15. });
Add Comment
Please, Sign In to add comment