como dice el titulo no me retorna datos nose por q lo veo y lo tengo bueno.. nose que podra ser
Código PHP:
Ver original<html>
<head>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
</head>
<body>
<br>
<label>Nombre de Usuario:</label>
<input type="text" id="texto" />
<input type= "button" value = "Consultar" id = "boton" />
<br></br>
<br></br>
<br></br>
<label>DATOS USUARIO</label>
<div id = "datos_usu">
<br></br>
<br></br>
<br></br>
</div>
<label>PERMISOS QUE POSEE</label>
<div id ="permiso">
<br></br>
</div>
<script>
$(document).ready(function(e) {
$('#boton').click(function(){
var mensaje = $('#texto').val();
alert(mensaje);
$.ajax({
type : "GET",
url : "ajax_admin_urg_add.php",
data : "mensaje="+mensaje,
cache : false,
success : function(datos){
alert("hola");
alert(datos);
}
});
})
});
</script>
</body>
</html>
en la funcion del succes tengo problemas creo por q antes tengo un alert que me lo imprime