//// ".innerText" is not w3c standard (it's IE only).// Good way : ".textContent", but IE8<= doesn't support ! (shame MS)//// Try with ".innerHTML" or use "txt = xxx.textContent || xxx.innerText"//