Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I reload the page after an AJAX call is done with a dialog?

so I have a dialog UI with a form once a user click on a link it opens. Once they click "Add button" it create a AJAX call that submits the data into the database. What I need to add is reload() function to refresh the page.

How can I add the reload function?

I have tried to add windows.localtion.reload(); you can see it my code. That line does not work for some reason

//Update contact dialog box
    $( "#contact-edit" ).dialog({
    resizable: false,
    width: 500,
    modal: true,
    autoOpen: false,
    buttons: {
        "Update Info": function(e) {

        var formData = $('#edit-form').serialize();

        //submit record
        $.ajax({    
            type: 'POST',
            url: 'ajax/handler-contact-update.php',     
            data: formData,
            dataType: 'json',
            cache: false,
            timeout: 7000,
            success: function(data) {           

                $('#response-edit').removeClass().addClass((data.error === true) ? 'errorBox' : 'passBox').html(data.msg).fadeIn('fast');   

                if ($('#response-edit').hasClass('passBox')) {
                    $('#response-edit').fadeIn('fast');
                    $('#edit-form').hide();
                        $( "#contact-edit" ).dialog("close");
                        windows.localtion.reload();
                }       
            },
            error: function(XMLHttpRequest, textStatus, errorThrown) {

                $('#response-edit').removeClass().addClass('errorBox')
                            .html('<p>There was an<strong> ' + errorThrown +
                                  '</strong> error due to a<strong> ' + textStatus +
                                  '</strong> condition.</p>').fadeIn('fast');           
            },              
            complete: function(XMLHttpRequest, status) {            
                    $('form')[0].reset();
                    //$( this ).dialog( "close" );


            }
        }); 



        },
        Cancel: function() {
            $( this ).dialog( "close" );
        },
        Submit: function(){
            $('form')[0].submit();
        }
    }
});
like image 215
Mike Avatar asked Apr 12 '13 02:04

Mike


2 Answers

You can try many ways to reload the page, I have tried few, at least few may help somebody.

location.reload()

location.reload(false)

window.location = window.location

window.location.reload();

If you using link then use this :

location.href = location.href
like image 196
Manjuboyz Avatar answered Oct 09 '22 18:10

Manjuboyz


You have a typo:

windows.localtion.reload();

Should be

window.location.reload();
like image 34
99823 Avatar answered Oct 09 '22 20:10

99823