JSFiddle - React, Tailwind, and code Playground

by Blake Plumb

HTML

<img src="http://dl.dropbox.com/u/59918876/coldplay-min.jpg" />
<img src="http://dl.dropbox.com/u/59918876/coldplay-min.jpg" />

JavaScript

$(function(){
 var thisImage;
  $('img').click(function(e) {
     thisImage = $(this);
  });
    
     $(window).keyup(function(event) {
    if ( event.which == 115) {
      $(thisImage).css('width', "+=25").css('height', "+=25");
    };

    if ( event.which == 97) {
      $(thisImage).css('width', "-=25").css('height', "-=25");
    };
  });

    
});