UK Webmaster Talk - Online Marketing - SEO


 

text box colour

This is a discussion on text box colour within the Website Design Forum forums, part of the Website Design & Development category; Did you get this working in the end ?...


Go Back   UK Webmaster Talk - Online Marketing - SEO > Website Design & Development > Website Design Forum

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Notices

Reply

 

LinkBack Thread Tools Display Modes
Old 26-10-2005, 23:30   #11 (permalink)
Super Moderator
 
Join Date: Mar 2005
Location: Herts, UK
Posts: 1,041
iTrader: 1 / 100%
monaghan is a jewel in the rough
Default

Did you get this working in the end ?
monaghan is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 27-10-2005, 00:09   #12 (permalink)
Super Moderator
 
Join Date: Mar 2005
Location: Herts, UK
Posts: 1,041
iTrader: 1 / 100%
monaghan is a jewel in the rough
Default

I'm bored waiting for a file transfer after installing a new hard disk in my dev server, so have a look at this very quick & dirty bit of demo code.

Code:
<html>

<head>

<script language="javascript">
function do_blue(myitem) {
	mydiv = document.getElementById(myitem);
	mydiv.style.backgroundColor = "#0000ff";

}
function do_red(myitem) {
	mydiv = document.getElementById(myitem);
	mydiv.style.backgroundColor = "#ff0000";

}
</script>
</head>

<body>

<form method="POST">
  <p><input type="text" name="T1" size="20" onblur="do_red('T1');" onfocus="do_blue('T1');"> </p>
  <p>
  <input type="text" name="T2" size="20" onblur="do_red('T2');" onfocus="do_blue('T2');"></p>
  <p>&nbsp;<input type="submit" value="Submit" name="B1">
  <input type="reset" value="Reset" name="B2"></p>
</form>

</body>

</html>
In reality, you'd use DOM events rather than hard code the onblur/onfocus events into each element, but this will give you a simple starter.
monaghan is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
box, colour, text

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
$1 Text Links rustypaulin Buy and Sell Ad Space 1 14-07-2006 21:47
colour chart Lewis General Webmaster Discussion 2 21-05-2005 11:53
Change Scroller Colour Departed Comments / Suggestions 2 29-04-2005 16:06
Change Scroller Colour Departed Programming Articles 6 23-04-2005 09:59


All times are GMT +1. The time now is 18:38.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
UK Webmaster Forum © WebmasterTalk.co.uk | Design by Forbairt

Ad Management by RedTyger

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41