ajax-deutsch Mailing List for Ajax - A-quality JAva eXtensions
Brought to you by:
vamp201
You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Michael B. <li...@tr...> - 2007-04-12 06:43:21
|
we all know that FF is able to fill a tbody with data via innerHTML, = f.e. tblBody.innerHTML =3D ajax.response; the response includes f.e. <tr> <td>foo</td> </tr> IE can't:( is there any workaround to create a new tbody in an existing = table and place an AJAX response as mentioned above? - This is driving me = crazy! |
|
From: Michael B. <li...@tr...> - 2006-08-16 09:14:48
|
noch aktiv?! |
|
From: Michael B. <li...@tr...> - 2006-07-28 07:10:34
|
httpRequest.open('get', '...');
if(httpRequest.readyState =3D=3D 4)
{
alert(httpRequest.responseText);
}
httpRequest.send(null);
das get skript wird einwandfrei ausgef=FChrt, nur der alert wird nicht=20
angezeigt.
mit onreadystatechange gehts aber (logischerweise):
httpRequest.onreadystatechange =3D function() { myAler };
functtion myAlert()
{
if(httpRequest.readyState =3D=3D 4)
{
alert(httpRequest.responseText);
}
}
also geht es nicht ohne onreadystatechange?!=20
|