Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function () {
- setTimeout(function () {
- $("#twitter").fadeOut();
- }, 3000);
- $("#twitter-button").mouseenter(function () {
- $("#twitter").fadeIn();
- });
- $("#twitter-button").mouseleave(function () {
- $("#twitter").fadeOut();
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment