JSFiddle - React, Tailwind, and code Playground

HTML

<div class="mm">hello world aaaa</div>
<p>this will disappear on hover of hello world</p>

CSS

.mm { color:#000; padding:15px; }

JavaScript

$(document).ready(function(){
  // Sorry about bad spacing. Also...this is jquery if you didn't notice allready.
  $(".mm").hover(function(){
    //On Hover - Works on ios
    $("p").hide();
  }, function(){
    //Hover Off - Hover off doesn't seem to work on iOS
    $("p").show();
 })
});