Я не могу понять, как мне обратиться к объекту createOne, как к элементу DOM, для того чтобы присвоить ему стиль через джаваскрипт. Пожауйста, помогите, я только учусь...)
<script type="text/javascript">
function createObj(element) {
this.create = function(){
cube = document.createElement("div");
cube.className = "cube";
document.body.appendChild(cube);
}
this.positionLeft ="positionLeft";
this.positionTop ="positionTop"
}
var createOne = new createObj();
for(var i=0; i<30; i++){
createOne.create()
}
</script>
Заранее благодарна...