SMProxy

Untitled

May 14th, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $(document).ready(function () {
  2. setTimeout(function () {
  3. $("#twitter").fadeOut();
  4. }, 3000);
  5. $("#twitter-button").mouseenter(function () {
  6. $("#twitter").fadeIn();
  7. });
  8. $("#twitter-button").mouseleave(function () {
  9. $("#twitter").fadeOut();
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment