Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function verifyName(name){
- if (name.length == 0){
- return false;
- }
- //var ajax = getAJAX();
- //ajax.open("GET","../php/query.php?T=0&V="+name);
- //ajax.send();
- $.get("../php/query.php",{ T : 0, V : name}, function(respuesta){
- if (respuesta=="1"){
- return true;
- } else {
- return false;
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment