JQuery

How to redirect in mvc using jQuery?

How to redirect in mvc using jQuery?, someone asked me to explain?

In this article I will show you how to redirect in mvc using a jQuery script code. When the user clicks the button JQuery event is triggered on that you can assign controller action to location.href.

redirection in jquery

Example:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<
script type="text/javascript">
    $(document).ready(function () {
        $('#btnForgotPassword').click(function (e) {
            location.href = '@Url.Content("~/Account/ForgotPassword/")';
        });
    });
</script><input id='btnForgotPassword' type="button" value="ForgotPassword" />

Post your comments / questions