jQuery Mobile Loader resetHtml() Method Last Updated : 03 Apr, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using the jQuery Mobile Loader resetHtml() method to resetHtml the loader widget. Syntax: $( ".selector" ).loader( "resetHtml" ); $.mobile.loading( 'resetHtml'); Arguments: This method does not accept any arguments. CDN Links: Add the below jQuery Mobile scripts that will be needed for your project. <link rel="stylesheet" href="//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css"> <script src="//code.jquery.com/jquery-3.2.1.min.js"></script> <script src="//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"></script> Example: This example demonstrates the jQuery Mobile Loader resetHtml() method. HTML <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href= "//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css"> <script src= "//code.jquery.com/jquery-3.2.1.min.js"></script> <script src= "//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"> </script> <script> $(function () { $("#show").on("click", function () { $.mobile.loading('show'); }); $("#btn").on('click', function () { $.mobile.loading("resetHtml"); alert("resetHtml method is triggered"); }); }); </script> </head> <body> <center> <div data-role="page" id="page1"> <div data-role="header"> <h1 style="color:green;">GeeksforGeeks</h1> <h3> jQuery Mobile Loader resetHtml() Method </h3> </div> <div role="main" class="ui-content"> <div data-role="controlgroup" id="GFG"> <button id="show" data-theme="b"> Default loader </button> </div> </div> <input type="button" id="btn" style="width:250px;" value="resetHtml"> </div> </center> </body> </html> Output: Reference: https://api.jquerymobile.com/loader/#method-resetHtml Comment More infoAdvertise with us Next Article jQuery Mobile Loader hide() Method S SHUBHAMSINGH10 Follow Improve Article Tags : Web Technologies JQuery jQuery-Mobile jQuery-Mobile-Loader Similar Reads jQuery Mobile Loader show() Method jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using the jQuery Mobile Loader show() method to show the loader widget. Syntax: $( ".selector" ).loader( "show" ); Parameters: This meth 1 min read jQuery Mobile Loader hide() Method jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using the jQuery Mobile Loader hide() method to hide the loader widget. Syntax: $( ".selector" ).loader( "hide" );$.mobile.loading( 'hid 1 min read jQuery Mobile Listview refresh() Method jQuery Mobile is a set of HTML5 based user interaction widget toolbox used for various purposes build on top of jQuery. It is designed to build fast and responsive websites accessible to mobile, tabs, and desktops. jQuery Listview is a widget used to create beautiful lists. It is a simple and respon 2 min read jQuery Mobile Loader loading() Method jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will learn to use the jQuery Mobile Loader loading() Method. The jQuery Mobile Loader loading() Method is used to show or hide the loader messag 2 min read jQuery Mobile Pagecontainer load() Method jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using the jQuery Mobile Pagecontainer load() method to load the page from the specified URL. Syntax: Invoking the load method: $(".selec 3 min read jQuery Mobile Toolbar refresh() Method jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will use the jQuery Mobile Toolbar refresh() method to update the toolbar. This method is used to update the visual styling. Syntax: $("selector 1 min read Like