Go Back   SitePoint Forums > Forum Index > Program Your Site > JavaScript
Newsletter FAQ Members List Calendar Mark Forums Read

New to SitePoint Forums? Register here for free!

SitePoint Sponsor
 
Reply
 
Thread Tools Display Modes
Old Jul 16, 2004, 12:36   #1
ArticleBot
SitePoint Articles
 
ArticleBot's Avatar
 
Join Date: Apr 2001
Posts: 0
Article Discussion

This is an article discussion thread for discussing the SitePoint article, "Simple Tricks for More Usable Forms"
ArticleBot is offline   Reply With Quote
Old Sep 23, 2004, 02:54   #2
gdape
.
 
gdape's Avatar
 
Join Date: Jan 2002
Location: in the outskirts, and in the fringes
Posts: 499
Nice, and the working example at the end is great for us who skim and hack
gdape is offline   Reply With Quote
Old Mar 24, 2005, 08:05   #3
Chrisss
SitePoint Member
 
Join Date: Mar 2005
Posts: 4
Hmm that wasn't too hard :-)
Here is the code addition to alter the label text:
function oninputfocus(e) {
/* Cookie-cutter code to find the source of the event */
[...cut...]
/* End cookie-cutter code */
var id = source.id;
var label = getLabelForId(id);
label.style.fontWeight='bold';

source.style.border='2px Solid #711F5E';
source.style.margin='0';
}
function oninputblur(e) {
/* Cookie-cutter code to find the source of the event */
[...cut...]
/* End cookie-cutter code */
var id = source.id;
var label = getLabelForId(id);
label.style.fontWeight='normal';

source.style.border='1px Solid #711F5E';
source.style.margin='1px 0';
}

Hope it's usefull! It was for me :-)
Chrisss is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread | Next Thread »

Thread Tools
Display Modes

 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Sponsored Links
 
Forum Jump


All times are GMT -7. The time now is 02:32.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Copyright 1998-2009, SitePoint Pty Ltd. All Rights Reserved