10 lines
261 B
JavaScript
10 lines
261 B
JavaScript
jQuery(function($){
|
|
$(".donationWizard").on("render:post", function(){
|
|
var cb=document.getElementsByName("anonymous")[0];
|
|
cb || console.log("ERROR: the checkbox anonymous ain't no more");
|
|
cb.checked = true;
|
|
cb.parentNode.style.display="none";
|
|
|
|
});
|
|
|
|
});
|