Tema: imput
Ver Mensaje Individual
  #7 (permalink)  
Antiguo 21/07/2013, 18:26
Avatar de patilanz
patilanz
 
Fecha de Ingreso: enero-2012
Mensajes: 880
Antigüedad: 13 años
Puntos: 29
Respuesta: imput

Código Javascript:
Ver original
  1. document.getElementById('click').onclick=function(){
  2.  
  3. var width=document.getElementById('texto').value+'px';
  4.   document.getElementById('div1').width=width;
  5.   document.getElementById('div2').width=width;
  6.   document.getElementById('div2').width=width;
  7. }

o haces esto:

Código Javascript:
Ver original
  1. document.getElementById('click').onclick=function(){
  2. var width=document.getElementById('texto').value+'px';
  3. var numeroDeDivs=10;
  4. for(var i=1;i<=numerodedivs;i++){
  5.   document.getElementById('div'+i).width=width;
  6. }
  7. }