I am working on a function that requires jQuery AJAX. The AJAX post is working fine. On success a url is returned that the user must be redirected to. The return function is working fine, but the part where I am using indexOf is not catching the url like it should. Am I missing something?
Here is the success part of my AJAX call.
success: function (data) {
if(data.indexOf('https://') > -1){
$('#vb_submit_load').hide();
$('#voltbamRegisterForm').html('');
$('#voltNotification').removeClass('voltError');
$('#voltNotification').addClass('voltSuccess');
$('#voltNotification').html('Your account has been successfully created!<br />You now need to accept the PayPal Billing agreement, you will not be charged at this time.');
window.location = data;
}
else{
$('#vb_submit_load').hide();
$('#submitRegVolt').show();
$('#voltNotification').addClass('voltError');
$('#voltNotification').html('<b>Please Fix The Following Error</b><br/>' + data);
}
}
Thanks for your help!
indexOfnot working with arrays in IE7 today and used the following to fix it: snipplr.com/view/52639 – Aaron W. Jul 18 '12 at 1:34