forum

Home / DeveloperSection / Forums / How to Add Callback method & redirect to a page in Jquery?

How to Add Callback method & redirect to a page in Jquery?

Anonymous User 2102 11-Dec-2014

I have a function in JQuery which shows the Message in div to the User on the ASPX page at the top of the page. All works fine just i want to redirect user to the URL that is passed in the function using Callback'jquery. 

As their is fadeOut() to show the div i need to redirect only when the fadeOut() effect or the animation is completed. and not sudden display of div. 

Javascript: 

function ShowJPopupTitleCallBack(msg, msgTitle) {
    $("#jDialogMessage").html(msg);
    $("#jDialogMessage").show("slow", function() { 
    });
    $("#jDialogMessage").fadeOut(5000);
//window.location="Login.aspx";
    return false;
};

In aspx.cs file: 

Page.ClientScript.RegisterStartupScript(this.GetType(), "Popup", "<script type='text/javascript'>ShowJPopupTitleCallBack('Sorry! Your session has being expired please login & try again.','Session Timeout...!')</script>");

Here, i want to pass one more parameter to redirect to the said url using jquery only after the messabe is being displayed(animation completed). 

Help appreciated!


Updated on 12-Dec-2014
I am a content writter !

Can you answer this question?


Answer

2 Answers

Liked By