Help!
Hi, everbody!
I have this problem:
There is a “textbox” and a “submit” button.
“Submit button” is disabled until something is written within “text box”. I am not able to do this switch. Could anybody help me?
Here you are the code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<cfform name="form1" id="form1" method="post" action="">
<cfinput type="text" name="Text" id="Text">
<cfinput type="submit" name="submit" disabled="disabled" id="submit" value="Submit">
</cfform>
</body>
</html>
Thank you!