c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
JQuery

How to redirect in mvc using jQuery?

| | JQuery , MVC

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" />