I have a form on an HTML page with the usual user name, email etc. I
want to be able to display a popup window (callout?) when a text input
control element is clicked.
For example, for the form:
<form action="somethi ng.php" method="post">
<label for="uname">Use r Name</label>
<input type="text" id="uname"/>
<input type="image" src="go.gif"/>
</form>
When the user clicks in the user name fields, I want to display a
callout (or popup window), with the text:
"The username must be at least 8 character long"
does anyone know how to do this?
want to be able to display a popup window (callout?) when a text input
control element is clicked.
For example, for the form:
<form action="somethi ng.php" method="post">
<label for="uname">Use r Name</label>
<input type="text" id="uname"/>
<input type="image" src="go.gif"/>
</form>
When the user clicks in the user name fields, I want to display a
callout (or popup window), with the text:
"The username must be at least 8 character long"
does anyone know how to do this?
Comment