Skip to content

Instantly share code, notes, and snippets.

@geetfun
Last active May 20, 2018 21:45
Show Gist options
  • Save geetfun/ab6b2a8c9f37f9c47e759c4207dcb748 to your computer and use it in GitHub Desktop.
Save geetfun/ab6b2a8c9f37f9c47e759c4207dcb748 to your computer and use it in GitHub Desktop.
Champ App - Enlarge post images in new tab
<style type="text/css">
.post img:hover {
cursor: pointer;
}
</style>
<script type="text/javascript">
  $(function() {
$(document).on("click", ".post img", function(e) {
var $this = $(this);
var newWindow = window.open($this.prop("src"), '_blank');
newWindow.focus();
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment