AiPdimi
unread,Sep 10, 2012, 10:21:02 AM9/10/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web_desig...@googlegroups.com
سلام
کسی میدونه تو
jquery
چطور متن داخل
textbox
می گیرن
منظورم قسمت قرمز این کد که
#urname
نام ای دی همان تکست در فرم هست
$(document).ready(function() {
$('#urname').on("focusout",function(){
$.get('data.php', $(this).serialize(), function(data){
if(data)
{
$('#content').html("<h1 style='color:red;'>"+
$("#urname").text()+
" are NOT Avilable</h1>"
);
}else{
$('#content').html("<h1 style='color:green;'>"+
$("#urname").text()+
" are Avilable</h1>"
);
}
});
return false;
});
$("#br").on("focusout",function(){
$("#content").empty();
});
});