Tema: Disabled
Ver Mensaje Individual
  #9 (permalink)  
Antiguo 26/12/2012, 11:38
carlosuc99
 
Fecha de Ingreso: junio-2011
Mensajes: 342
Antigüedad: 13 años, 5 meses
Puntos: 5
Exclamación Respuesta: Disabled

Cita:
Iniciado por David Ver Mensaje
Estás intentado modificar el elemento antes de que exista en el documento:
Código Javascript:
Ver original
  1. $(document).ready(function() {
  2.     // DOM cargado, todos los elementos existen
  3.     // Aquí puedes modificar el input
  4. });
Lo he dejado así y directamente no se ve ni el DOM:

Código Javascript:
Ver original
  1. <script src="http://code.jquery.com/jquery.min.js"></script>
  2. <script type="text/javascript">
  3.  $(document).ready(function() {
  4.     <form action="insertar-modelo.php" method="post" enctype="application/x-www-form-urlencoded">
  5.     <table>
  6.  
  7.  
  8.     <tr><td class=Forms>Name:</td><td><input type="text" value="Airbus A320" name="nombre" size="30"/></td></tr>
  9.     <tr><td class=Forms>Price:</td><td><input maxlength="9" value="1000000" type="text" name="precio" size="30"/> &#8364;<br/></tr>
  10.  
  11.     <tr><td class=Forms>Number Classes:</td><td><select name="numberclasses" id="numberclasses" onchange="callAjax()">
  12.         <option>1</option>
  13.         <option>2</option>
  14.         <option>3</option>
  15.     </select></td></tr>
  16.  
  17.  
  18.  
  19.     <tr><td class=Forms>First Class:</td><td><input disabled="disabled" type="text" id="classes" name="classes" size="30"/></td></tr>
  20.     <tr><td class=Forms>Bussines Class:</td><td><input disabled="disabled" type="text" name="classes2" size="30"/></td></tr>
  21.     <tr><td class=Forms>Economy Class:</td><td><input disabled="disabled" type="text" name="classes3" size="30"/></td></tr>
  22.     $("#classes").removeAttr('disabled');
  23.  
  24.         <tr><td></td><td><input type="submit" name="enviar" value="Insertar"/></td></tr>
  25.          </table>
  26.     </form>
  27.    
  28.     });
  29.     </script>