jQuery Mobile Loader show() Method Last Updated : 20 Jan, 2022 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 show() method to show the loader widget. Syntax: $( ".selector" ).loader( "show" ); Parameters: This method does not accept any arguments. CDN Links: Add the below jQuery Mobile scripts that you 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 show() 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'); }); }); </script> </head> <body> <center> <div data-role="page" id="page1"> <div data-role="header"> <h1 style="color:green;">GeeksforGeeks</h1> <h3> jQuery Mobile Loader show() Method </h3> </div> <div role="main" class="ui-content"> <div data-role="controlgroup" id="divId"> <button id="show" data-theme="b"> Default loader </button> </div> </div> </div> </center> </body> </html> Output: jQuery Mobile Loader show() Method Reference: https://api.jquerymobile.com/loader/#method-show Comment More infoAdvertise with us Next Article jQuery Mobile Pagecontainer load() Method S SHUBHAMSINGH10 Follow Improve Article Tags : Web Technologies JQuery jQuery-Mobile jQuery-Mobile-Loader Similar Reads jQuery Mobile Loader resetHtml() 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 resetHtml() method to resetHtml the loader widget. Syntax: $( ".selector" ).loader( "resetHtml" ); $.mobi 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 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 Toolbar show() Method jQuery Mobile is a set of HTML5 based user system interaction widget toolbox used for various purposes build on top of jQuery. It is designed to build fast and responsive sites accessible to mobile, tabs, and desktops. In this article, we will use the jQuery Mobile Toolbar show() method to display t 1 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 Loader fakeFixLoader() 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 fakeFixLoader() Method. Using this method, we can fix the position of the loader in the browser (the 2 min read Like