I am creating a web page and I need that, when you pass the mouse over a DIV, below it appears another DIV
I am creating a web page and I need that, when you pass the mouse over a DIV, below it appears another DIV
You can use JQuery
$("#ELEMENTO").hover(function(){
$("#ELEMENTO").after("<div></div>");
},function(){});
Greetings:)