Difference between revisions of "Team:Valencia UPV/mainjava"
Line 1: | Line 1: | ||
$(document).ready(function (){ | $(document).ready(function (){ | ||
− | $(". | + | $(".slider_text2").hide(); |
− | $(". | + | $(".slider").hover(function(){ |
− | $(". | + | $(".slider_text2").fadeIn(); |
},function(){ | },function(){ | ||
− | $(". | + | $(".slider_text2").fadeOut(); |
}); | }); | ||
}); | }); |
Revision as of 13:21, 14 September 2015
$(document).ready(function (){
$(".slider_text2").hide(); $(".slider").hover(function(){ $(".slider_text2").fadeIn(); },function(){ $(".slider_text2").fadeOut(); });
});