Hello,
this is my exercice, I have three animated link, used setInterval() I have a problem.
the problem is this, all links are animated, I want to animate a link to time.
problem: How can i use the reserved word “this”, I think?!
thank’s for the help, by by.
here my code:
<body>
<a href>link1</a>
<a href>link2</a>
<a href>link3</a>
<script>
var x = document.getElementsByTagName("a");
var size = 13;
for(i=0; i<x.length; i++){
x[i].addEventListener("mouseover", loadx);
}
function loadx(){
setInterval(function(){
for(i=0; i<x.length; i++){
size++;
x[i].style.fontSize = size + "pt";
}
}, 50);
}
</script>
</body>