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 ?...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| | #11 (permalink) |
| Super Moderator | Did you get this working in the end ?
__________________ Alex Monaghan - Monaghan Consultants Ltd Web hosting, ADSL, IT & Database consultancy Custom Web hosting on UK or USA servers using Linux (cPanel) or Windows (DotNetPanel) Mobile Phone Ringtones, Logos, Java Games & more |
| | |
| | #12 (permalink) |
| Super Moderator | 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> <input type="submit" value="Submit" name="B1">
<input type="reset" value="Reset" name="B2"></p>
</form>
</body>
</html>
__________________ Alex Monaghan - Monaghan Consultants Ltd Web hosting, ADSL, IT & Database consultancy Custom Web hosting on UK or USA servers using Linux (cPanel) or Windows (DotNetPanel) Mobile Phone Ringtones, Logos, Java Games & more |
| | |
| Tags |
| box, colour, text |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| 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 |