Bonjour, j'ai un img et lorsque je le survole, je veux qu'il fasse disparaître un div, mais cela ne fonctionne pas. Voici ma tentative.
$("img").hover(
function () {
var currentID = $(this).attr('id');
$('.'+currentID).show();
},
function () {
var currentID = $(this).attr('id');
$('.'+currentID).hide();
}
);
Voici le HTML
//intially hidden via display:none
<div class="Alligator sinensis" style="display:none;border:solid;float:right;">
//this is the image
<img id="Alligator sinensis" class="circular resultss imgs" src="http://media.eol.org/content/2013/02/20/13/27869_orig.jpg">