Advertisement
Guest User

Untitled

a guest
Apr 25th, 2014
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. var del_id = "del"+countPage+"-"+questionCount;
  2. html+='<tr><td><input type="button" value="delete" id="'+del_id+'" /><td><input type="button" value="Copy" id="copy_id"/></tr>';
  3. $("#"+del_id).click(function(){
  4. alert("jkhkjh");
  5. });
  6.  
  7. html+='<tr><td id="'+del_id+'"><input type="button" value="delete" id="'+del_id+'" /><td><input type="button" value="Copy" id="copy_id"/></tr>';
  8.  
  9.  
  10. $(document).on("click", "#"+del_id, function(){
  11. alert("jkhkjh");
  12. });
  13.  
  14. $(document).on("click", "#"+del_id, function(){
  15.  
  16. $(document).on("click", "[type='button'][id^='del']", function(){
  17.  
  18. $(document).on("click", ".buttonClass", function(){
  19.  
  20. $(document).on('click', 'buttonId/Class', function(){
  21. // Do something.
  22. })
  23.  
  24. $(document).on("click", "#"+del_id, function(){
  25.  
  26. });
  27.  
  28. $('body').on("#"+del_id, 'click', function(){
  29. //Do something.
  30. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement