Created
April 2, 2015 13:56
-
-
Save Ball/1a2f3fa05a77814497b1 to your computer and use it in GitHub Desktop.
Deletion Prompt for Jon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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