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)
精彩评论