Código HTML:
Ver original
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css"> </head> <body> <div data-role='header'> </div> Usuario: <input type='text' name='user' id='user' value='andres'> <br> Clave: <input type'password' name='password' id='password'> <br> <div data-role='footer'> <div id='cargar'> </div> </div> <script> function peticion(){ $.ajax({ url:'http://chessmoney.260mb.net/recibe.php', type:'POST', data:"user="+$("#user").val(), dataType:'json', success: function(result) { alert(result); } }); } </script> </body> </html>
Estoy probando que tenga conexion con el firebug y todo bien, tambien lo probe con un form y un boton de submit y de esta manera tambien funciona, solo que cuando lo trabajo con android no anda.
Les agradeceria me colaborararn, gracias.