PHP Classes

File: js/spinner/spinner.js

Recommend this page to a friend!
  Classes of Saro Carvello   PHP Web MVC Framework   js/spinner/spinner.js   Download  
File: js/spinner/spinner.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Web MVC Framework
MVC framework providing autogenerated MySQL models
Author: By
Last change: Update of js/spinner/spinner.js
Date: 1 year ago
Size: 667 bytes
 

Contents

Class file image Download
$('.btn-primary, .btn-info, .btn-success, .btn-warning, .btn-danger').click(function(e) { $("#divLoading").addClass('show'); setTimeout(function(){ $("#divLoading").removeClass('show'); }, 5000); return true; }); $('table tbody tr td a, table tfoot tr td a').click(function(e) { $("#divLoading").addClass('show'); setTimeout(function(){ $("#divLoading").removeClass('show'); }, 5000); return true; }); $('.loading').click(function(e) { $("#divLoading").addClass('show'); return true; }); $('form').submit(function(e) { $("#divLoading").addClass('show'); return true; });