I am trying to have some text added to a Div where I can add some text if the image is hovered and disappear when mouse is out.
I’m trying this:
<script>
$('#image1').mouseover(function() {
$('#panel').append('<div>This image is very nice.</div>');
});
</script>
You should try this: