Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. html
  2. <div id="main"> </div>
  3.  
  4. info = ["Hello", "Bye", "Hey Gary"];
  5. for (i = 0; i < 3; i++){
  6. document.getElementById('main').innerHTML += "<a id='" + info[i] + "' class='list-group-item'>"+info[i]+"</a>";
  7. document.getElementById(info[i]).innerHTML += "<input class='btn btn-danger pull-right' class='test77' value='send'>";
  8. document.getElementById('main').innerHTML += "<br><hr></hr>";
  9. }
  10. createbutton();
  11.  
  12. function createbutton() {
  13. $(".test77").click(function () {
  14. alert("i want to send information at the left");
  15. });
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement