How can I show a DIV from another DIV to which the mouse is passed over? [closed]

0

I am creating a web page and I need that, when you pass the mouse over a DIV, below it appears another DIV

    
asked by Rafael Fernando Mollinedo Ramo 03.09.2018 в 23:41
source

1 answer

1

You can use JQuery

$("#ELEMENTO").hover(function(){
$("#ELEMENTO").after("<div></div>");
},function(){});

Greetings:)

    
answered by 03.09.2018 / 23:52
source