This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
Bodie, I dont know js very well but the reference I use doesnt have a property called style for any object. could you give me a link to a tutorial or something that explains? This reference gives 5 properties of textArea defaultValue, form, name, type and value D'oh maybe it is vbscript?
SCJP
Anonymous
Ranch Hand
Joined: Nov 22, 2008
Posts: 18944
posted
0
Nope, the style property is part of Cascading Style Sheets (CSS). There are a bunch of different ways that you can apply this stuff. Using Style sheets:
you define a "style" that you want to apply in several different places. Then you only have to set your HTML object's Class attribute to apply the style. Like this:
This applies the style defined by your .text entry in the style sheet to the TD in question. You can also do this using the style attribute of an HTML element if the style isn't going to be widely reused. Like this:
The third way that I use styles is through DHTML. You get a reference to an object, either by creating it in JavaScript or by using JavaScript to get a reference to an existing object. Then you use the style property of the object to modify its style. Like this:
You have to be careful, because the properties of a style sheet have different names in DHTML than they do in HTML. Notice that in HTML the property is called font-weight, but in DHTML it is called fontWeight. That's my $.02 on CSS.
Randall Twede
Ranch Hand
Joined: Oct 21, 2000
Posts: 4095
1
posted
0
thanks bodie, the first 2 examples are familiar to me but none of the tutorials on ccc, js or dhtml that i have read have mentioned using a style that way. such a powerful tool too