Advertisement
sanjiisan

Untitled

Jun 5th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $(function () {
  2. $('dt').on('mouseover', function () {
  3. console.log(this);
  4. });
  5.  
  6. var buttons = $('.hero-buttons').find('button');
  7. buttons.on('click', function (event) {
  8. console.log(
  9. $(this).data('feature')
  10. );
  11. });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement