Guest User

Untitled

a guest
Mar 24th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function selectedThumbnails () {
  2. $('.thumbnail').on('click', function(event) {
  3. const Src = $(this).find('img').attr('src');
  4. const Alt = $(this).find('img').attr('alt');
  5.  
  6. $('.hero img').attr('src', Src).attr('alt', Alt);
  7.  
  8. });
  9. }
  10.  
  11.  
  12. $(selectedThumbnails);
Add Comment
Please, Sign In to add comment