picking off names/values of buttons (there must be a better way)

This commit is contained in:
Stephen McQuay 2013-03-05 23:53:22 -08:00
parent a74c5bb8bb
commit fe0411e8df
2 changed files with 9 additions and 8 deletions

View File

@ -1,6 +1,11 @@
$(function() {
$(".controls").hide();
$(".name").click(function(e) {
$(".child").click(function(e) {
$(this).next(".controls").toggle();
});
$(".btn").click(function(e) {
var amount = $(this)[0].value;
var name = $(this).parent().parent().parent().prev().find(".name").text();
console.log(name + " " + amount);
});
});

View File

@ -16,13 +16,9 @@
</thead>
<tbody>
{{ range .children }}
<tr class="name">
<td>
{{ .Name }}
</td>
<td>
{{ dollarize .Money }}
</td>
<tr class="child">
<td class="name">{{ .Name }}</td>
<td>{{ dollarize .Money }}</td>
</tr>
<tr class="controls">
<td colspan=2 style="text-align: center;">