|
alia,
I'm not sure if you can do this in the "WYSIWYG" side of dreamweaver, but I know you can do this if you edit the HTML source directly.
In order to do this, you'll have to make sure of a few things:
1) The <TD> that you're trying to change has a unique ID assigned to it: <td ID="colorChange">
2) You will need to add an "onClick" event to the <input> tag: <input type=checkbox onclick="doFunction('colorChange');">
3) You will need to create the javascript function where you will style the <td> background color:
function doFunction(elem)
{
document.getElementById(elem).style.bgColor = #FF0000;
}
That should give you a good starting point, and hopefully enough information to extend it to fully suit your specific needs.
Take care,
Ric
|
|
Expert:
|
rcastagna
|
|
Date:
|
Mar 08, 2007
|
|
Time:
|
10:22
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
alia, please close this question and distribute the points.
If you didn't get a solution to your problem or you found it yourself, please leave a comment here to let the experts know.
Thanks,
Quomon Admin
|
|
Expert:
|
admin
|
|
Date:
|
Jun 16, 2007
|
|
Time:
|
16:06
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
The question has been closed.
Quomon Admin
|
|
Expert:
|
admin
|
|
Date:
|
Jun 25, 2007
|
|
Time:
|
06:05
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
|
|
|
|
This question has been answered, and points have been rewarded to the following experts:
You're welcome however to comment or give additional information or if you wish, you have the ability to write an Answer Summary for this question by clicking on the "Answer Summaries" Tab.
|
|