Código Javascript
:
Ver originaldocument.getElementById('click').onclick=function(){
var width=document.getElementById('texto').value+'px';
document.getElementById('div1').width=width;
document.getElementById('div2').width=width;
document.getElementById('div2').width=width;
}
o haces esto:
Código Javascript
:
Ver originaldocument.getElementById('click').onclick=function(){
var width=document.getElementById('texto').value+'px';
var numeroDeDivs=10;
for(var i=1;i<=numerodedivs;i++){
document.getElementById('div'+i).width=width;
}
}