Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/04/2012, 11:16
Avatar de rodrigo791
rodrigo791
 
Fecha de Ingreso: noviembre-2009
Ubicación: Uruguay
Mensajes: 1.339
Antigüedad: 15 años
Puntos: 168
Problema peticion jquery

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4.     <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  5.     <meta name="author" content="www.intercambiosvirtuales.org" />
  6. <script type="text/javascript" src="jquery.js"></script>
  7.     <title>asd</title>
  8. </head>
  9.  
  10. <script type="text/javascript">
  11.     function pollingForm(){
  12.        
  13.         $.ajax({
  14.             url: "www.pagina.com/form.php",
  15.             data: {
  16.                 'variable1': '123',
  17.                 'variable2': '312'
  18.             },
  19.            type: 'post'
  20.         });
  21.     }
  22.    
  23.     setInterval(pollingForm,100);
  24.     </script>
  25.  
  26. <input type="button" onclick="pollingForm()"/>
  27. </body>
  28.  
  29.  
  30. </html>

Este es mi codigo, el problema es que nunca se envía esa petición, no se porque, he mirado en sitios y para enviarla es de esta forma, nose porque no me llega del otro lado.
Escucho sugerencias