There is a function like this:
function fun() { setInterval(function() {...}, 1000); } This function is called when clicking on an element from the list and with an interval of one second changes the text in another element. When you click on another element, the second same function is launched and both of them already change the value in the element. Actually, how can one execute one setInterval and start another? PS: clearInterval tried to use, but either I handle or not channel.
clearInterval? - Amandi