Guest User

Untitled

a guest
May 24th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $.fn.blah = function() {
  2. return this.each(function() {
  3. var self = this;
  4. $(self).slideDown("slow");
  5. window.setTimeout(function() {
  6. $(self).slideUp("slow");
  7. }, 4000);
  8. });
  9. }
  10.  
  11. $(document).ready(function() {
  12. $("#error, #message").blah();
  13. });
Add Comment
Please, Sign In to add comment