JSFiddle - React, Tailwind, and code Playground

by Afzaal Ahmad Zeeshan

HTML

<img src="https://www.google.com/images/srpr/logo11w.png" alt="">

JavaScript

$('img').hover(function () {
    $(this).attr('src', 'https://24.media.tumblr.com/d58381bfb5f7b922a025a9e4bcac5fbb/tumblr_n3vcroJFoJ1smayp3o1_500.png');
});

$('img').mouseout(function () {
      $(this).attr('src', 'https://www.google.com/images/srpr/logo11w.png');
});