Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-08-2005, 04:38 PM   PM User | #1
jstewie
New Coder

 
Join Date: Jun 2005
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
jstewie is an unknown quantity at this point
my script for colors, I need help with trying to make a script to increasing the text

I need some help trying to make a script to increase and decrease the text on the webpage. I have more that the options listed....

<script language="javascript">
function colorChange()
{
document.bgColor=document.list.colors.options[document.list.colors.selectedIndex].value;
}
</script>
Change Background Color:
<form name="list">
<select name="colors">
<option value="006633">Default
<option value="black">Black
<option value="white">White
</select>
<input type="button" value="Change Background color" name="myButton" onClick="colorChange()" />
</form>
<BODY bgColor=#006633>
<script language="javascript">
function change()
{
document.fgColor=document.text.color.options[document.text.color.selectedIndex].value;
}
</script>
Change Color of Text:
<form name="text">
<select name="color">
<option value="black">Default
<option value="black">Black
<option value="white">White
</select>
<input type="button" value="Change Text color" name="myButton2" onClick="change()" />
</form>
jstewie is offline   Reply With Quote
Old 07-08-2005, 06:03 PM   PM User | #2
vwphillips
Senior Coder

 
Join Date: Mar 2005
Location: Portsmouth UK
Posts: 4,354
Thanks: 3
Thanked 458 Times in 445 Posts
vwphillips is a jewel in the roughvwphillips is a jewel in the roughvwphillips is a jewel in the rough
Code:
 

document.getElementsByTagName('Body')[0].style.fontSize='25px';
vwphillips is online now   Reply With Quote
Old 07-09-2005, 02:54 PM   PM User | #3
mrruben5
Regular Coder

 
Join Date: Nov 2004
Location: The Netherlands
Posts: 551
Thanks: 0
Thanked 0 Times in 0 Posts
mrruben5 is an unknown quantity at this point
lol

http://www.alistapart.com/d/relafont/example.html
__________________
CATdude about IE6: "All your box-model are belong to us"
mrruben5 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT +1. The time now is 10:39 AM.


Advertisement
Log in to turn off these ads.