Advertisement
Guest User

ಠ_ಠ

a guest
Oct 19th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.64 KB | None | 0 0
  1. $('head').append('<style>#smiley-popup{background: #fff;width: 300px;height: 200px;position: absolute;top: -215px;border-radius: 5px;border: 1px solid #ddd;box-shadow: 0 5px 15px rgba(0,0,0,0.4);padding: 10px;}</style>');
  2. $('#chat-buttons').prepend('<button class="button" id="smiley-button">ಠ_ಠ</button>');
  3. $('#chat-buttons').append('<div id="smiley-popup"><button>ಠ_ಠ</button></div>');
  4. $('#smiley-popup').hide();
  5. $('#smiley-button').on('click',function(){
  6.     $('#smiley-popup').fadeIn();
  7. });
  8. $('#smiley-popup').find('button').on('click',function(){
  9.     $('#smiley-popup').fadeOut();
  10.     $('#input').val($('#input').val() + $(this).html());
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement