Skip to content

Instantly share code, notes, and snippets.

@Ball
Created April 2, 2015 13:56
Show Gist options
  • Save Ball/1a2f3fa05a77814497b1 to your computer and use it in GitHub Desktop.
Save Ball/1a2f3fa05a77814497b1 to your computer and use it in GitHub Desktop.
Deletion Prompt for Jon
<html>
<head>
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script type="application/javascript">
$(document).ready(function(e){
$("button.delete").click(function(){
var org_name = $(this).parents("tr")
.children("td:first-child").html();
alert(org_name);
});
});
</script>
</head>
<body>
<table border="1">
<tr>
<td>
org name
</td>
<td>
2
</td>
<td>
emails
</td>
<td>
<button class="delete">x</button>
</td>
</tr>
</table>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment