Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.28 KB | None | 0 0
  1. function flashOnceBckg(target, bgcolor) {
  2.     if (target.length > 0) {
  3.         var oc = target.css('background-color');
  4.         target.css('background-color', bgcolor);
  5.  
  6.         setTimeout(function () {
  7.             target.css('background-color', oc);    
  8.         }, 500)
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement