Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('#log').keyup(function () {
  2. var login = $("#login").val();
  3. $.post('/api/?alg=reg&action=save_validation&using=ajax', {login: login}, function (response) {
  4. if (response) {
  5. check_login.innerHTML = "<div class='message padd_top_10 padd_bot_10 red'><div><p>ВНИМАНИЕ! имя занято</p></div></div>";
  6. submit.innerHTML = "";
  7.  
  8. } else {
  9. check_login.innerHTML = "<div class='message padd_top_10 padd_bot_10 yellow'><div><p>Имя свободно</p></div></div>";
  10. submit.innerHTML = "<div class='button orange'><input type='submit' name='' id= 'btt' value='Выбрать имя'></div>";
  11.  
  12. }
  13. });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement