Guest User

Untitled

a guest
Jan 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $('.always img').each(function(){
  2. var $this = $(this);
  3. console.log($this.attr('src'));
  4. $this.wrap('<a href="' + $this.attr('src') + '" download />')
  5. $(this)
  6. });
  7. $('.always img').each(function(){
  8. $(this).trigger('click');
  9. });
Add Comment
Please, Sign In to add comment