Template:2012FR/Form-section/Radiobuttons/Default: Difference between revisions
Content deleted Content added
rm currency symbol from other button |
add js for checked amount class |
||
Line 49:
$(".frequency-options > label").removeClass("checked");
$(this).addClass("checked");
});
$(".radiobuttons-cell label, .input_amount_other").click(function() {
$(".radiobuttons-cell label").removeClass("checked");
$(".input_amount_other").removeClass("checked");
$(this).addClass("checked");
});
$(".input_amount_other").click(function() {
$("#radiobuttons-table > td").each(function() {
$(this).checked = false;
});
$(".input_amount_other").addClass("checked");
$("#input_amount_other_box").focus();
});
|