Salve a tutti
ho inserito il seguente codice sulla pagina index.html, style.css e script.js
ma non mi avvia la funzione animata di textshadow
Qualcuno mi spiega come mai ? Grazie
Index.html
<script src="JQuery/libs/jquery-1.6.1.min.js" type="text/javascript"></script>
<script src="JQuery/jquery.animate-textshadow.js" type="text/javascript"></script>
<script type="text/javascript">
$("#glow").hover(function() {
$(this).animate({textShadow: "#000 0 0 15px"});
}, function() {
$(this).animate({textShadow: "#000 0 0 0"});
});
</script>
</head>
<body>
<div id="glow"> <a href="index.html" class="link">Prova </div>
</body>
Grazie