Advertisement
sanjiisan

Untitled

Jun 5th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $(function () {
  2. var newDiv = $('<div>', {class: 'panel', 'data-text': 'Magiczne turbo tajne hasło!! Hidden'});
  3.  
  4. $('body')
  5. .on('mouseenter', '.panel', function () {
  6. $(this).text(
  7. $(this).data('text')
  8. );
  9. })
  10. .on('mouseleave', '.panel', function () {
  11. $(this).empty();
  12. });
  13.  
  14. $('section.people').after(newDiv);
  15.  
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement