开发者

jquery nyromodal close and redirect

I am using nyroModal plugin http://nyromodal.nyrodev.com/ to create a login modal. The id开发者_高级运维ea is, once the user has logged in successfully, to close the nyromodal and redirect him/her to the another url?

Is that possible?

Thanks

jeet


You could add in nyroModal afterClose callback the code to redirect to a new url and all code according your needs, I think to read through an ajax call or from a cookie if user is successfully logged in:

$(document).ready(function(){

    $('.nyroModal').nyroModal({
        callbacks: {
            afterClose: function() {
                window.location.href = "http://newurl";
            }
        }
    });

});


This should do what you're looking for

function RefreshParent(){
    var url = window.parent.location.href;

    window.parent.location.href = url;
}

You'll need to include that piece of code to the login page (the one inside the nyroModal window)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜