Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/03/2012, 17:44
Avatar de Naahuel
Naahuel
 
Fecha de Ingreso: marzo-2011
Ubicación: localhost
Mensajes: 796
Antigüedad: 13 años, 8 meses
Puntos: 192
Respuesta: Problema con jQuery en IE al agregar atributo onchange

No entiendo por qué lo estás haciendo así.. es mezclar las cosas.

No es mejor esto?

Código Javascript:
Ver original
  1. $(document).ready(function(){
  2.     //$("#contenido input[type=text]").attr("onChange","alert('cambio');");
  3.     $("#contenido input[type='text']").change(function(){
  4.         alert('cambio');
  5.     });
  6. });

Notá las comillas en 'text'. Suele ser importante.
__________________
nahueljose.com.ar