I have little problem in my code, I’m sure it’s nothing but I can’t find it.
Someone can help me?
I get this:
Uncaught SyntaxError: Unexpected identifier
$(document).ready(function(){
$('#zone1').mouseover(function(){
$('#cercle2-1').fadeIn(200);
}
$('#zone1').mouseout(function(){
$('#cercle2-1').fadeOut(200);
}
});
Thank you in advance.
The code was missing two right parenthesis to close the function calls.