Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $(document).ready(function(){
  2. $("button.delete").click(function(){
  3. if($(this).prev(".database")) {
  4. var id = $(this).prev(".database").text();
  5. window.location = '/dashboard/delete-mysql.php?database=' + id;
  6. } else if($(this).prev(".username")) {
  7. var id2 = $(this).prev(".username").text();
  8. window.location = '/dashboard/delete-mysql.php?username=' + id2;
  9. }
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement