Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

JS and Textboxes

Status
Not open for further replies.

tperri

Programmer
Apr 8, 2006
728
US
I have an ASP.Net page that has two text box controls on it. One if to collect an email address, and the other to collect a home airport code.

When the page loads, in the text boxes, I want to have appear "Enter e-mail address" and "Enter Airport Code", respectively. I've set the Text property of the text boxes to show this, of course. However some javascript I'm using is creating behaviors that isn't quite right.

In the textbox's onfocus event, I have "this.value=''" which works properly, but I do not want it to fire off on page load because it is clearing out the first of the two text boxes I have. The only other control I have on this page is a submit button, and in my code I placed btnSignup.Focus(), but that button is not receiving focus on Page Load. So this method isn't quite right.

The behavior I am after is, after page load and the text boxes display their initial values, if the user types something other than the default value in either of the text boxes, I dont want the text to be cleared if the textbox gains focus again; otherwise, if a text box gains focus and the text in the box equals the initial values, I want them cleared.

Any help and direction to some web sources would be great. I've searched Google but I don't think I'm searching the proper term because I'm not finding anything useful. As always, thank you for the help in advance!

 
I think what you are after is something that basically clears the textbox after the user enters the element itself. If so, have a look at for a good javascript example that clears the field once the user enters it. If this isn't what you're after, you're probably best off asking in the javascript forum as they'll know the best method for you to use.


____________________________________________________________
Mark,
[URL unfurl="true"]http://aspnetlibrary.com[/url]

Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.
 
You'll want to set a variable initially and have it change when the textbox is first entered, then have the javascript check the variable before clearing the box on subsequent entries. Like:

var firstTimeBox1 = true;
Function clearItBox1 (what) {
if (firstTimeBox1 == true) {
what.value='';
firstTimeBox1 = false;
}
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top