Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

form field value change onclick

Asked Modified Viewed 16,002 times
A
aRiFiN
A
aRiFiN 10
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
asked
Newbie

Hi,

How do I change the value for a field in my form when sombody clicks in that field?

for example i have a field for "name" and it should say "name" in it, but when you click in it the value changes to nothing.

Thanks,

echo "<input type='text' name='user_name' class='textbox' style='width:100px' value ='".$locale['global_101']."' onclick='if(this.value == '".$locale['global_101']."') this.value = '';' onblur='if(this.value == '') this.value = '".$locale['global_101']."';' />\n";

i have try like this but its not working
Edited by aRiFiN on 27-09-2009 04:46,
0 replies

3 posts

S
SiteMaster
S
If i have touched it, it's W3C Valid
  • Senior Member, joined since
  • Contributed 305 posts on the community forums.
  • Started 15 threads in the forums
answered
Senior Member

try this
echo "<input type='text' name='user_name' class='textbox' style='width:100px' value ='".$locale['global_101']."' onblur=\"if(this.value == '') this.value = '".$locale['global_101']."';\" onfocus=\"if(this.value=='".$locale['global_101']."') this.value = '';\" />\n";
0 replies
A
aRiFiN
A
aRiFiN 10
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

thanks.. its working.. perfect.. :o
0 replies
— 1 year later —
W
Weberje
W
Weberje 10
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
answered
Newbie

Working, great. thanks.
0 replies

Category Forum

Locales Forum - 8

Labels

None yet

Statistics

  • Views 0 views
  • Posts 3 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

S
S
If i have touched it, it's W3C Valid
  • Senior Member, joined since
  • Contributed 305 posts on the community forums.
  • Started 15 threads in the forums
A
A
aRiFiN 10
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
W
W
Weberje 10
  • Newbie, joined since
  • Contributed 4 posts on the community forums.

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet