Advertisement
Advertisement
| 08.25.2008 at 09:55PM PDT, ID: 23677461 | Points: 250 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: |
function dynamicallySetStyle(whichDiv,whichStyle,value) {
document.getElementById(whichDiv).style.whichStyle = value + "px";
}
dynamicallySetStyle("myDiv","top",100);
|