JSFiddle - React, Tailwind, and code Playground

by Baliga

JavaScript

$(document).ready(function(){
     $(".food").hover(function(){
       $("#food").show();
       $("#fmcg").hide();
       $("#retail").hide();
     });
     $(".fmcg").hover(function(){
        $("#food").hide();
        $("#fmcg").show();
        $("#retail").hide();
     });
      $(".retail").hover(function(){
         $("#food").hide();
         $("#fmcg").hide();
         $("#retail").show();
      });
       $(".indus-icn-lst").hover(function(){
       $(this).find(".indus-category");
       $(this).toggleClass("indusactive");
      });
 });