I have some set of values updated in the modal and the modal is opened on the same page . on closing the Modal How can i refresh the Page in jquery
$("#dialog-modal").bind('dialogclose',function() {
//How Do i refresh the current Page.
)};
I have some set of values updated in the modal and the modal is opened on the same page . on closing the Modal How can i refresh the Page in jquery
$("#dialog-modal").bind('dialogclose',function() {
//How Do i refresh the current Page.
)};
$("#dialog-modal").bind('dialogclose',function(){
// force the browser to get the page from the server
window.location.reload(true);
)}
Edit:
It would appear the OP was looking for this as the answer (from comments, below):
$("#dialog-modal").bind('dialogclose',function(){
$('#someForm').submit();
)}