Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

ajax loader


// Setting up a loading indicator using Ajax Events
$( "#loading_indicator" )
    .ajaxStart(function() {
        $( this ).show();
    })
    .ajaxStop(function() {
        $( this ).hide();
    });
Source by learn.jquery.com #
 
PREVIOUS NEXT
Tagged: #ajax #loader
ADD COMMENT
Topic
Name
5+9 =