Guest User

Untitled

a guest
Feb 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $(function() {
  2. $('#create').click(function(){
  3. document.getElementById('select').innerHTML = '<button id="choice"></button>'
  4. });
  5. });
  6.  
  7. $(function() {
  8. $('#choice').click(function() {
  9. ...
  10. });
  11. });
  12.  
  13. $(function(){
  14. $('#create').click(function(){
  15. document.getElementById('select').innerHTML = '<button id="choice"></button>'
  16. });
  17. });
  18.  
  19. $(function(){
  20.  
  21. $('body').on('click','#choice',function(){
  22. ....
  23. });
Add Comment
Please, Sign In to add comment