Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Mar 10th, 2005, 11:29 AM   #1
Navid
Hobbyist Programmer
 
Navid's Avatar
 
Join Date: Feb 2005
Location: Canada
Posts: 187
Rep Power: 4 Navid is on a distinguished road
Send a message via MSN to Navid
Calling a function in a table

<HTML>

<HEAD>

<SCRIPT LANGUAGE="JAVASCRIPT">

function table()

{
document.write("example")
}

</SCRIPT>

</HEAD>

<BODY>

<TABLE BORDER=3>
<TR><TD>
"HERE"
</TD></TR>
</TABLE>

<FORM>
<INPUT TYPE="BUTTON" VALUE="FUNCTION IN TABLE" onClick="table()">

</BODY>

</HTML>


How would i call the function to work in the table instead of starting a new page? Like when i click on the button, i want it to write "example" in the table.

Can anyone help me?
Navid is offline   Reply With Quote
Old Mar 10th, 2005, 5:46 PM   #2
Ooble
I eat cake for breakfast.
 
Ooble's Avatar
 
Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9 Ooble is on a distinguished road
Give the <td> tags an ID:
<td id="test">
</td>

And use the innerHTML property:
function table() {
    document.getElementById("test").innerHTML = "Boo!";
}
__________________
Me :: You :: Them
Ooble is offline   Reply With Quote
Old Mar 11th, 2005, 11:09 AM   #3
Navid
Hobbyist Programmer
 
Navid's Avatar
 
Join Date: Feb 2005
Location: Canada
Posts: 187
Rep Power: 4 Navid is on a distinguished road
Send a message via MSN to Navid
thanks man
Navid is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 3:07 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC