When mouse enter and Out

PHOTO EMBED

Tue Mar 22 2022 07:56:52 GMT+0000 (Coordinated Universal Time)

Saved by @25vitalyzd2

    $("#click").on("mouseenter", whenMouseEnter);

    $("#click").on("mouseleave", whenMouseLeaves);


    function whenMouseEnter() {
        
        $("#click").html("<h2>Inside Me</h2>");
    }

    function whenMouseLeaves() {
        
        $("#click").html("<h2>Where you goin'?</h2>");
    }
content_copyCOPY