I want to start a function when I over mouse an ID #show-details
.
But I need it to start only one until it ends, not to start over and over again ...
With my code below It starts when I mouseover
it but starts over and over even if it doesn't finish.
I need some help :)
function showDetails() {
var details = document.getElementById('show-details');
details.addEventListener('mouseover', initDetailsLetters);
}