HTML Tutorial


 Forum HomeForum Home   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
Problem accessing DIVs by reference
Post new topic   Reply to topic    HTML Help Forum Index -> DHTML
View previous topic :: View next topic  
Author Message
philippeoget



Joined: 14 Mar 2005
Posts: 7
Location: London, UK

PostPosted: Tue Mar 15, 2005 11:32 pm     Problem accessing DIVs by reference Reply with quote

Given the DIVs below, my problem is to access and refer to the different DIVs.
At the moment the sub below accesses the idOutput DIv, but when I tried to change the sub to "Sub WriteThis(StringToWrite, DivToWriteTo)", then I get all sort of errors.
How to I retrieve the actual DIV element, so I could have:

DivToWriteTo.insertAdjacentHtml "beforeend", StringToWrite

Sub WriteThis(StringToWrite)
idOutput.insertAdjacentHtml "beforeend", StringToWrite
End Sub

<DIV id='idOutput'>
<DIV id='idDivConfig' name="DivConfig"><b>IP Config Results:</b><br> </DIV>
<DIV id='idDivPing' name="DivPing"><b>Ping Results:</b><br> </DIV>
<DIV id='idDivTracert' name="DivTracert"><b>Tracert Results:</b><br> </DIV>
</DIV>
nickyt



Joined: 16 Mar 2005
Posts: 3

PostPosted: Fri Mar 18, 2005 5:57 am     Reply with quote

First of all since you're on the client you shouldn't be using VBScript, use JavaScript so your function should look like this:

Code:
function WriteThis(sTargetDiv, sHTML)
{
   document.getElementById("idOutput").innerHTML += sHTML
}

I beliebe most newer versions of Mozilla based browsers including FireFox support innerHTML.

If you need to get this to work for Netscape 4, there are other ways to accomplish this.
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum Index -> DHTML All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial