HTML Help Forum Index HTML Help
Please Search for the answer to your question before asking it! Thanks.
 

Help
Post a Reply to this Topic Ask a New Question
Click here to go to the original topic
       HTML Help Forum Index -> General HTML
View previous topic :: View next topic  
Author Message
jake12001200



Joined: 18 Aug 2009
Posts: 1

Posted: Thu Oct 15, 2009 9:20 am     Help  

I want to change my background coulor and I've got the code :
Code:       <html>
   
      <head>
   
       
   
      <title>change the background color with onMouseover</title>
 
       
 
      </head>
        <body>
         
      Move the cursor to the color you want ...
      <br>
        <br>
        <a href="" onMouseover="document.bgColor='red'">Red</a>
        <br>
        <a href="" onMouseover="document.bgColor='orange'">Orange</a>
        <br>
        <a href="" onMouseover="document.bgColor='yellow'">Yellow</a>
        <br>
        <a href="" onMouseover="document.bgColor='green'">Green</a>
        <br>
        <a href="" onMouseover="document.bgColor='magenta'">Magenta</a>
        <br>
        <a href="" onMouseover="document.bgColor='white'">white</a>
      <br>
              <a href="" onMouseover="image.bgcolor='http://jake12001200.webs.com/Pictures/mini black.png'></a>
<br>
 
      </body>
 
      </html>

And I want to know how to put your mouse over an image so it changes the background coulor
any1 know?
PayneLess Designs



Joined: 28 Feb 2007
Posts: 3593
Location: Biloxi, MS

Posted: Thu Oct 15, 2009 6:25 pm      

Code: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
  <title>Background Color Change onMouseover</title>
  <meta name="created" content="Fri, 16 Oct 2009 02:16:58 GMT">
  <meta http-equiv="content-type" content="text/html;charset=utf-8">
  <meta name="description" content="">
  <meta name="keywords" content="">
</head>
<body>
Move the cursor to the color you want ...
      <br>
        <br>
        <a href="#nogo" onMouseover="document.bgColor='red'">Red</a>
        <br>
        <a href="#nogo" onMouseover="document.bgColor='orange'">Orange</a>
        <br>
        <a href="#nogo" onMouseover="document.bgColor='yellow'">Yellow</a>
        <br>
        <a href="#nogo" onMouseover="document.bgColor='green'">Green</a>
        <br>
        <a href="#nogo" onMouseover="document.bgColor='magenta'">Magenta</a>
        <br>
        <a href="#nogo" onMouseover="document.bgColor='white'">White</a>
      <br>
       <a href="#nogo" onMouseover="document.bgColor='red'"><img src="http://jake12001200.webs.com/Pictures/mini%20black.png" width="80" height="80" alt=""></a>
</body></html>
 
 
DARFUR
HOSTING / DESIGN
MAKE MONEY

       HTML Help Forum Index -> General HTML
Page 1 of 1


Powered by phpBB Search Engine Indexer
Powered by phpBB 2.0.19 © 2001, 2002 phpBB Group