C# MVC Load Partial View In Jquery

 function uploadfacility(actionurl) {

              
         var   url =actionurl;
                $(".loader").show();
                $.get(url, function (data1) {

                    $("#modaluploadfac").html(data1);
                    $("#modaluploadfac").modal('show');
                    $(".loader").hide();

                               

                  
                });
            }

Comments

Popular posts from this blog