[nycphp-talk] Removing Text from an Input Box
Ben Sgro (ProjectSkyline)
ben at projectskyline.com
Wed Jun 6 20:53:59 EDT 2007
Hello,
Yeah, I just hacked up this:
. "<input type=\"text\" value=\"Username\" onfocus=\"this.value=''\">"
. "<input type=\"text\" value=\"Password\" onfocus=\"this.value=''\" onfocus=\"this.type='password'\">"
What im trying to do is turn that type to a password..so I can see the text...is that possible.
- Ben
Ben Sgro, Chief Engineer
ProjectSkyLine - Defining New Horizons
----- Original Message -----
From: Andy Dirnberger
To: 'NYPHP Talk'
Sent: Wednesday, June 06, 2007 8:47 PM
Subject: RE: [nycphp-talk] Removing Text from an Input Box
I usually do something like the following to clear the value. Keep in mind that when the type is set to password your text will always display masked.
DiRN
<input onfocus="clearText (this);" />
<script type="text/javascript">
function clearText (el) {
if (el.defaultValue == el.value) el.value = "";
}
</script>
From: talk-bounces at lists.nyphp.org [mailto:talk-bounces at lists.nyphp.org] On Behalf Of Ben Sgro (ProjectSkyline)
Sent: Wednesday, June 06, 2007 8:44 PM
To: NYPHP Talk
Subject: [nycphp-talk] Removing Text from an Input Box
Hello,
This is more of a JS question, but I'm going to ask it anyways.
I just got the book, "Pro Javascript Techniques" (Apress) and what sucks is that many of
the examples do not work.
What I want to do is have to input boxes, a username and password.
Instead of having labels next to them such as:
Username: [INPUT BOX]
Password: [INPUT BOX]
I want to have the text inside the box [INPUT BOX: Username]. etc...
When the user mouses over, I want to make that "Username" text dissapear so they can type their username in.
Any help?
- Ben
Ben Sgro, Chief Engineer
ProjectSkyLine - Defining New Horizons
------------------------------------------------------------------------------
_______________________________________________
New York PHP Community Talk Mailing List
http://lists.nyphp.org/mailman/listinfo/talk
NYPHPCon 2006 Presentations Online
http://www.nyphpcon.com
Show Your Participation in New York PHP
http://www.nyphp.org/show_participation.php
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.nyphp.org/pipermail/talk/attachments/20070606/798017bc/attachment.html>
More information about the talk
mailing list