Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
1  
What, exactly, is your response returning? Try console.log(data) at the beginning of your success function and post that here – Austin Jul 18 '12 at 1:27
Turns out the page was just cached. Oops, thanks for your time. – Mike George Jul 18 '12 at 1:34
FYI - ran into indexOf not 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
@Aaron W. and this is why I hate Internet Explorer. Thanks for the info! – Mike George Jul 18 '12 at 1:37

1 Answer

Well, looks like a derp moment :P. The page was cached from a previous version. A simple clear of the cache fixed this one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.