Wrox Home  
Search P2P Archive for: Go

  Return to Index  

html_code_clinic thread: Double Click question


Message #1 by Leeann Schulthess <Leeanns@l...> on Mon, 12 Mar 2001 14:35:17 -0600
Try this (NN or IE)

var  clic	//clic is boolean 
clic =false;

function validation()
{
if (clic == false) {
	//sumbit form
	clic = true;	
	return true;	
	}
else
	{	
		alert("Please be patient!");
		return false;
	}
}
}
Regards,

  Return to Index