KW Online Tools Zone
Knowledge Walls
View All Tools Home
MOUSEOVEREXAMPLE
[Jquery editor]
Run
Share Link
Clear
HTML [Ctrl+Enter] - to run
<div class="one">one-hover here to show next number</div> <div class="two">two</div> <div class="three">three-hover here to show next number</div> <div class="four">four</div>
CSS [Ctrl+Enter] - to run
.two,.four{ display:none; }
Jquery [Ctrl+Enter] - to run
$(function(){ $(".one").mouseover(function(){ $(".two").show(); }); $(".three").mouseover(function(){ $(".four").show(); }); });
OUTPUT
Copyright © 2021 Knowledge walls, All rights reserved
Copyright © 2021 Knowledge walls, All rights reserved