Sunday, 23 May 2021

jQuery load() method for calling partial view in mvc with loading progress bar

 //////////// HTML


  <div class="EEReport Summary" id="divSummary">
        <div id="Progressbar" class="ExportReportProgress"></div>
        <div class="loaddataURL"></div>
    </div>

////////////////// J-Query

function LoadUrl(th, IntWidth, showDivButtonId) {
        $("#Progressbar").show();
        $('.loaddataURL').load(
            "URL",
            DataContent or Form Data
            function (data, status, jqXGR) {
                    //// Here set any thing after loading the url data or form
                $("#Progressbar").hide();
            }
        );

}


How to highlight selected text in notepad++

  –> To highlight a block of code in Notepad++, please do the following steps step-1  :- Select the required text. step-2  :- Right click...