PHP Classes

File: htdocs/modules/system/themes/dark/js/close_errors.js

Recommend this page to a friend!
  Packages of Michael Beck   Xoops 2.5   htdocs/modules/system/themes/dark/js/close_errors.js   Download  
File: htdocs/modules/system/themes/dark/js/close_errors.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change:
Date: 2 months ago
Size: 468 bytes
 

Contents

Class file image Download
/* * Close errors shown on control panel entry after some time */ (function($) { $(document).ready(function() { // Close error messages if($(".errorMsg").length > 0){ setTimeout(function(){ $(".errorMsg").slideUp(500, function(){ $(this).remove(); $('#xo-content br').not($('#xoopsorgnews br')).remove(); }); }, 7000); } }); })(jQuery);