JavaScript Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsWeb DesignJavaScript Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old November 10th, 2000, 07:41 PM
Kiefer27 Kiefer27 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2000
Posts: 12 Kiefer27 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Okay, I am trying to get a javascript to run on a <td> tag when a page is created.

ex:
<td id=abc onload="bgColor = retrieveData('color')">

As far as I know, you cannot use onload on the <td> tag, but somehow I need to get the script to run when the page loads.

Unfortunately I cannot call this script on the <body> tag as an onload (like this: document.all.abc.bgColor = retrieveData('color') becuase I am creating the page on the fly, and will not know how many <td>'s will be created, or their names.

Any ideas?


[This message has been edited by Kiefer27 (edited November 10, 2000).]

Reply With Quote
  #2  
Old November 13th, 2000, 11:18 AM
Kiefer27 Kiefer27 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2000
Posts: 12 Kiefer27 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Hello again - I just thought of another possible way around this problem, and that would be to use .css. I could use an Onload function on base to change the color defined in the .css file, in which the class (which had the color change) would be attached to all of the <td>'s that would be created on the fly.

Now, if the above cannot be answered, is there a way to change .css files using javaScript?

Thanks . . .

Reply With Quote
  #3  
Old November 13th, 2000, 12:34 PM
Kiefer27 Kiefer27 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2000
Posts: 12 Kiefer27 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Hello -
Okay, so I think I solved this problem. Instead of using a function call on each <td>, I used class=. Then in the <head>, I created an embedded style sheet which calls the the retrieveData function:

<SCRIPT LANGUAGE = "JavaScript">
<!--
document.write("<style type='text/css' media='screen'> ");

document.write(".tdcolor {background-color : ");
document.write(retrieveData('color'));
document.write(";} ");

document.write(" </style> ");
-->
</script>

Works great now!

-Jason

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignJavaScript Development > Need help with td javascript funcion call. . .

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap