That worked! Thanks so much!
Not sure I understand. Here is my script:
}
jQuery(document).ready(function(){
jQuery(‘.button-submit’).click(function(){
var radioValue = jQuery(‘input:radio:checked’).val();
if(radioValue == ‘creditcard’){
window.location.href = ‘http://www.hedgebrook.org/donate/’;
}
if(radioValue == ‘paypal’){
window.location.href = ‘https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UZ6PC9KF3YGLG’;
}
if(radioValue == ‘mail’){
window.location.href = ‘http://www.hedgebrook.org/mail-a-check/’;
}
I added the javascript, but now the page doesn’t return anything on submit. Did I do something wrong?