-
Notifications
You must be signed in to change notification settings - Fork 24
Methods
Gix075 edited this page Feb 17, 2015
·
1 revision
List of plugin data methods allowed.
To use stop() method you need to load plugin with animation option stop setted on false
$('#element').introLoader({
animation: {
options: {
stop: false
}
}
});
Then you can use
var loader = $('#element').data('introLoader');
loader.stop();
To destroy plugin simply use the following lines:
var loader = $('#element').data('introLoader');
loader.destroy();