i - pod FF - działa, pod operą działa - pod ie8.0 - powiedzmy że działa są problemy małe - ale jakoś to wygląda
natomiast pod ie6 i ie7 - totalna masakra wogóle nie czyta styli i wszystko się rozsuwa - ale tekst pokazuje, przy próbie zapisu strony - wyświetla błąd brakujących plików, nie da się dać podglądu źródła (po prostu nic się nie dzieje)... no i nie zgłasza żadnych błędów
ktoś ma jakiś pomysł co jest nie tak? albo zna jakieś dobre narzędzie do debugowania js pod ie...
pozdrawiam
function parseRecords(xml) { record = xml.getElementsByTagName("record"); if (record.length==0) { return; } result = ""; d = $("dataTable"); for (i = d.rows.length-1; i >= 0; i--) {d.deleteRow(i);} for (i = 0; i < record.length; i++) { if (i%2==0) { tr = document.createElement('tr'); tr.setAttribute('class','shout_odd'); } if (i%2!=0) { tr = document.createElement('tr'); } td = document.createElement("td"); td.innerHTML =record[i].childNodes[0].childNodes[0].nodeValue; td.setAttribute('class','shout_time'); tr.appendChild(td); td = document.createElement("td"); td.innerHTML = "<a class='forum_profil_link' href='?go=p_profil&login="+record[i].childNodes[1].childNodes[0].nodeValue+"'>"+record[i].childNodes[1].childNodes[0].nodeValue+"</a>"; td.setAttribute('class','shout_login'); tr.appendChild(td); td = document.createElement("td"); td.innerHTML = record[i].childNodes[3].childNodes[0].nodeValue; td.setAttribute('class','shout_message'); tr.appendChild(td); d.appendChild(tr); } return result; }