Good morning,
I would like to now if I can create a hover effect with JQuery. Is it possible if the user puts the mouse over an image and then it displays a toggle effect with some text? How can I do that?
At the moment, the toggle effect is working when the user "click" on the image, but I would like to create the same effect with a simple hover.
This is my code:
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
$(document).ready(function(){
$("#flip1").click(function(){
$("#panel1").slideToggle("500");
});
$("#flip2").click(function(){
$("#panel2").slideToggle("500");
});
$("#flip3").click(function(){
$("#panel3").slideToggle("500");
});
});
</script>
Is it possible with JQuery?
Thanks,
Regards,