JSFiddle - React, Tailwind, and code Playground

HTML

<img id="lamp" src="http://placekitten.com/50/50"/>

JavaScript

$(document).ready(function (){
   
  var bulbOn = function() {
    $(this).attr('src', 'http://placekitten.com/200/300');  
  }

  var bulbOff = function() {
    $(this).attr('src', 'http://placekitten.com/100/100');  
  }

  $('#lamp').hover(bulbOn, bulbOff);

});