allowances/static/allowances.js

12 lines
340 B
JavaScript
Raw Normal View History

2013-03-05 23:26:57 -08:00
$(function() {
$(".controls").hide();
$(".child").click(function(e) {
2013-03-05 23:26:57 -08:00
$(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);
});
2013-03-05 23:26:57 -08:00
});