What does this error mean? "Uncaught SyntaxError: Unexpected identifier"
I get it in this:
$('#prepare_payment’).attr('disabled','true');
jQuery('#prepare_payment_form :text').each(function() {
jQuery(this).attr('disabled', 'true');
});
And this as well:
$.post(ajaxurl, data, function(response) {
if(response.indexOf(“Error: “) != -1) {
$('#paypal_error').css('display', 'block');
$('#paypal_error').html(response);
$('#prepare_payment').removeAttr(disabled”);
jQuery(“#prepare_payment_form :text”).each(function() {
jQuery(this).removeAttr(“disabled”);
});
return false;
}
Can anyone tell me what the error means and why it's appearing?
“ ”