Click here to Skip to main content
15,892,746 members
Home / Discussions / Web Development
   

Web Development

 
Generalsending data in URL Pin
SamAmman19-Mar-04 20:51
SamAmman19-Mar-04 20:51 
GeneralRe: sending data in URL Pin
John Kuhn22-Mar-04 16:47
John Kuhn22-Mar-04 16:47 
GeneralWebservice schema not reflecting my code! Pin
Carl Mercier18-Mar-04 10:22
Carl Mercier18-Mar-04 10:22 
GeneralASP page communicates with MFC-EXE Pin
VinMan18-Mar-04 10:03
VinMan18-Mar-04 10:03 
GeneralCreate Table with createElement Pin
C0ffee18-Mar-04 1:56
C0ffee18-Mar-04 1:56 
GeneralRe: Create Table with createElement Pin
Paul Watson18-Mar-04 7:50
sitebuilderPaul Watson18-Mar-04 7:50 
GeneralRe: Create Table with createElement Pin
C0ffee18-Mar-04 8:54
C0ffee18-Mar-04 8:54 
GeneralRe: Create Table with createElement Pin
Paul Watson18-Mar-04 9:13
sitebuilderPaul Watson18-Mar-04 9:13 
This is bizarre, but to use appendChild and createElement for creating tables in Internet Explorer you must include a tbody.

So you need to do:
var chldT = document.createElement( "table" ) ;
var chldB = document.createElement( "tbody" ) ;
var chldR = document.createElement( "tr" ) ;
var chldC = document.createElement( "td" ) ;

chldC.innerText = "hello world!" ;
chldR.appendChild( chldC ) ;
chldB.appendChild( chldR ) ;
chldT.appendChild( chldB ) ;
document.body.appendChild( chldT ) ;


regards,
Paul Watson
Bluegrass
South Africa

Christopher Duncan quoted:
"...that would require my explaining Einstein's Fear of Relatives"

Crikey! ain't life grand?


Einstein says...
GeneralRe: Create Table with createElement Pin
18-Mar-04 9:22
suss18-Mar-04 9:22 
GeneralRe: Create Table with createElement Pin
C0ffee18-Mar-04 9:09
C0ffee18-Mar-04 9:09 
Generalresizing IFrame Pin
Hesham Amin18-Mar-04 0:29
Hesham Amin18-Mar-04 0:29 
GeneralRe: resizing IFrame Pin
C0ffee18-Mar-04 8:55
C0ffee18-Mar-04 8:55 
GeneralRe: resizing IFrame Pin
Hesham Amin18-Mar-04 20:40
Hesham Amin18-Mar-04 20:40 
GeneralRe: resizing IFrame Pin
C0ffee20-Mar-04 4:54
C0ffee20-Mar-04 4:54 
GeneralChange "File Field's" Button Color Pin
UB17-Mar-04 22:13
UB17-Mar-04 22:13 
GeneralRe: Change "File Field's" Button Color Pin
Anonymous18-Mar-04 4:02
Anonymous18-Mar-04 4:02 
GeneralRe: Change "File Field's" Button Color Pin
Paul Watson18-Mar-04 7:58
sitebuilderPaul Watson18-Mar-04 7:58 
GeneralRe: Change "File Field's" Button Color Pin
UB18-Mar-04 18:50
UB18-Mar-04 18:50 
QuestionHow to use that ”?” in a URL? Pin
anderslundsgard17-Mar-04 21:22
anderslundsgard17-Mar-04 21:22 
AnswerRe: How to use that ”?” in a URL? Pin
Ian Darling17-Mar-04 21:38
Ian Darling17-Mar-04 21:38 
GeneralRe: How to use that ”?” in a URL? Pin
anderslundsgard17-Mar-04 21:42
anderslundsgard17-Mar-04 21:42 
GeneralASP project in VS.Net Pin
Aggtaa17-Mar-04 7:13
Aggtaa17-Mar-04 7:13 
GeneralASP hellp !!! Pin
Guidingstar16-Mar-04 23:11
Guidingstar16-Mar-04 23:11 
GeneralRe: ASP hellp !!! Pin
Sarvesvara (BVKS) Dasa17-Mar-04 17:50
Sarvesvara (BVKS) Dasa17-Mar-04 17:50 
GeneralRe: ASP hellp !!! Pin
henningbenk17-Mar-04 23:43
professionalhenningbenk17-Mar-04 23:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.