Skip to content

Instantly share code, notes, and snippets.

@impronunciable
Created December 7, 2011 20:34
Show Gist options
  • Save impronunciable/1444517 to your computer and use it in GitHub Desktop.
Save impronunciable/1444517 to your computer and use it in GitHub Desktop.
$('#peron').click(function(e){
e.preventDefault();
$('#ul1 li a').each(function(){
var img = $('<img />');
$(img).attr('src', $(this).attr('href'));
$(this).before(img);
$(this).remove();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment