Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <table class="table table-bordered">
  2. <thead>
  3. <tr>
  4. <th>Docket No. #</th>
  5. <th>Del Date</th>
  6. <th>Box</th>
  7. <th>Status</th>
  8. <th>Update</th>
  9. </tr>
  10. </thead>
  11. <tbody id="dsr-data">
  12. <tr>
  13. <td>812210</td>
  14. <td>2016-12-03</td>
  15. <td>10</td>
  16. <td>out for delivery</td>
  17. <td>
  18. <a class="action" id="upload-1">
  19. <img src="img/upload.png" onclick="updateStatus(this.id)">
  20. </a>
  21. <a class="action" id="delete-1">
  22. <img src="img/delete.png" onclick="deleteStatus(this.id)">
  23. </a>
  24. </td>
  25. </tr>
  26. </tbody>
  27. </table>
  28.  
  29. <script>
  30. $.fn.extend({
  31. uploadStatus: function (id) {
  32. alert('id =' + id);
  33. }
  34. });
  35.  
  36. $.fn.extend({
  37. deleteStatus: function (id) {
  38. alert('id =' + id);
  39. }
  40. });
  41. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement