I'm using this sample code : http://www.w3schools.com/php/php_ajax_php.asp to do a live name search and display if it's available or not.
How do I disable the forms submit button if the name is in use, but enable it if the name is available ?
Many Thanks :)
Thanks for the advise. I've added this to the function and now the button disables when I type anything in..
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
$('#submit').attr('disabled', 'disabled');
}
}
How do I do this just for a match ? Thanks