lila/public/javascripts/plan.js
2016-07-13 16:14:20 +02:00

11 lines
260 B
JavaScript

$(function() {
$table = $('div.plan table.all');
$change = $table.find('.change');
$change.find('a').click(function() {
var f = $(this).data('form');
$change.find('form:not(.' + f + ')').hide();
$change.find('form.' + f).toggle();
});
});