Skip to content

Instantly share code, notes, and snippets.

@2hamed
Last active December 20, 2015 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 2hamed/6094339 to your computer and use it in GitHub Desktop.
Save 2hamed/6094339 to your computer and use it in GitHub Desktop.
$(function(){
$('#your_text_field').blur(function(){
var username = $(this).val();
var params = 'username='+username;
$.post('available.php', params, function(data){
//اینجا کدهای مربوط به موفقیت و عدم موفقبت رو قرار بدید
if(data == '1'){
// successful
}else{
// unsuccessful
}
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment