User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the HTML and CSS section within the Web Development category of DaniWeb, a massive community of 374,571 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,617 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our HTML and CSS advertiser: Lunarpages Web Hosting
Dec 31st, 2006
Views: 4,693
Use

This script can be used to mimize space of a textfield by putting the title of the field inside the text field itself when the page loads. This title will then disapear when it is clicked.

How To Use

Use the following code as your textfield and fill in the "value" property with the text that you want appear inside the field.

I hope you can use this handy code somewhere
html Syntax | 5 stars
  1. <input onfocus="this.value=''" name="Search" type="text" value="Search"/>
Comments (Newest First)
tavox | Newbie Poster | Mar 22nd, 2007
Nice job, the original code i already know but the comments posted are very helpful.
MattEvans | Posting Shark | Jan 29th, 2007
ah... but what if nothing and Search are valid values?

[html]
<input type="text" name="txt" value="Search"
onfocus="if(this.beenchanged!=true){ this.value = ''}"
onblur="if(this.beenchanged!=true) { this.value='Search' }"
onchange="this.beenchanged = true;"/>
[/html]
~s.o.s~ | Rebellion Revamped | Jan 20th, 2007
But this code won't work if the text field loses focus and then gains it again and for a variety of other conditions. With a bit of tweaking you guys should get the desired result. Here is my stab at it...:

  1. <html>
  2. <head>
  3. <title>Cool Text Effect</title>
  4. </head>
  5. <body>
  6. <label>Click on this text box </label>
  7. <input type="text" name="txt" value="Search"
  8. onfocus="if(this.value == 'Search') { this.value = ''} "
  9. onblur="if(this.value == '') { this.value='Search'; }" />
  10. </body>
  11. </html>
Post Comment

Only community members can submit or comment on code snippets. You must register or log in to contribute.

DaniWeb Marketplace (Sponsored Links)
All times are GMT -4. The time now is 5:45 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC