Is it possible to hide title when hovering image?

css, html, image, javascript, jquery

Solution

It can be easily done as some answers point out, but knowing what you want to do with title, I would use a data-* custom attribute or attach the title with .data()

<img src="image.jpg" alt="" data-title="some title" />

or

$('img').data('title', 'some title');

Problem

This is my code: ``` <img src="image.jpg" alt="" title="some title" /> ``` When I hover that image "some title" appears. Is it possible to be hidden?

Original source

Related problems