Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function verifyName(name,mbox){
- if (name.length == 0){
- callback(false);
- return;
- }
- //var ajax = getAJAX();
- //ajax.open("GET","http://www.smon.com.ar/php/query.php?T=0&V="+name);
- //ajax.send();
- $.get("http://www.smon.com.ar/php/query.php",{ T : 0, V : name}, function(respuesta){
- console.log("AJAX realizado!");
- if (respuesta=="1"){
- //mbox.innerHTML="El nombre de usuario igresado ya está registrado, o bien"+
- " dejó el campo vacío";
- mbox.style.visibility="visible";
- alert("AJAX listo!");
- callback(true);
- } else {
- callback(false);
- //mbox.style.visibility="hidden";
- alert("AJAX listo!");
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment