I\'m running some javascript which uses this:
controls = document.querySelectorAll(\"input,textarea,button\");
It should work on IE 9 (whic
Well, after some search, i ended up using this:
if( navigator.userAgent.indexOf("MSIE") != -1 ) { controls = document.getElementsByTagName('input'); }else{ controls = document.querySelectorAll("input,textarea,button"); }
It works. I'll do some more testing hoping that it will work xD.