Hello, I have a webpage where i want to have some kind of text that should change when i click on a picture. I thought of using div's and then using its innerHTML property to set the text to the new value but it is not actually working.
by some stupid reason it works on IE but in firefox it will change and in the same moment will change back to the old value. Any ideias why or how to do this in another way? Thanks in advanceQuote:
function LOL(teste) {
var div = document.getElementById(teste);
div.innerHTML = "blablabla";
