Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/06/2011, 13:52
hallyers
 
Fecha de Ingreso: enero-2011
Mensajes: 5
Antigüedad: 13 años, 10 meses
Puntos: 0
Respuesta: Función Jquery funciona en IE pero en Chrome/Firefox no

Por cierto el código del formulario es el siguiente:

Por favor, si alguien sabe cual es la causa de que Chrome/Firefox no detecte el evento "click" que lo diga, porque estoy atascadísimo.


Código HTML:
<form id="formPublicar" name="formPublicar" method="post">
                <table align="center">
                    <tr><td width="317"><div align="center">
                      <textarea cols="50" rows="6" name="textoPublicacion"></textarea>
                    </div></td></tr>
                    <tr><td align="right">
                       Categor&iacutea: 
                    <select name="tipo" size="1">
                        <?php
                        include('funciones.php');
                        $db=new basededatos();
                        $consulta=$db->consulta("SELECT nombre FROM tipos");
                        while($campo=mysql_fetch_array($consulta))
                        {
                            $tipo=$campo['nombre'];
                            
                            
                        
                        ?>
                        <option value="<?php echo $tipo; ?>"><?php echo $tipo; ?></option>
                        <?php
                        }
                        ?>
                    </select>
                    
                    <input type="button"  class="enviarFormulario" id="enviarFormulario" value="Publicar" />
                    </td></tr>
              </table>
</form>