Bootstrap: Basic Form

Lorem ipsum dolor sit amet

Lorem ipsum dolor sit amet

Example block-level help text here.

Lorem ipsum dolor sit amet

Lorem ipsum dolor sit amet

Usage Example
Click this button to execute the code below:

							$('#bt-body').click(function(){
								var maskloader = $('body').maskLoader();
								
								setTimeout(function(){
									maskloader.destroy();
								},3000);
							});								
							

Click this button to execute the code below:

							$('#bt-panel').click(function(){
								var maskloader = $('.panel-info').first().maskLoader();
								
								setTimeout(function(){
									maskloader.destroy();
								},3000);
							});								
							

Click this button to execute the code below:

							$('#bt-formgroup').click(function(){
								var maskloader = $('.form-group').first().maskLoader();
								
								setTimeout(function(){
									maskloader.destroy();
								},3000);
							});