Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/06/2010, 05:58
gspablo
 
Fecha de Ingreso: octubre-2009
Mensajes: 223
Antigüedad: 15 años, 1 mes
Puntos: 2
Fallo en Javascript

Buenas al ejecutar una página me aparece un fallo en Javascript, cuando le doy me aparece el siguiente error

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)
Timestamp: Mon, 7 Jun 2010 11:54:38 UTC


Message: 'null' is null or not an object
Line: 217
Char: 2
Code: 0
URI:...

Os pongo el código cercano a esa línea a ver si podeis ayudarme y consigo eliminar el fallo, comienza en línea 211 y acaba en línea 226

Código Javascript:
Ver original
  1. <script type="text/javascript">
  2.     var dataForm = new VarienForm('form-validate', true);
  3. </script>
  4. <script type="text/javascript">
  5. //$('form-validate').getElements().each(function(el){ el.enable(); })
  6.  
  7.     $('form-validate').observe('submit',function(e){
  8.         this.getElements().each(function(el){
  9.             if(!el.getValue() || el.getValue()==''){
  10.                 //add class?
  11.                  el.disable();
  12.             }
  13.         });
  14.         //Event.stop(e);
  15.     });
  16. </script>