Add / Delete CSS classes on hover

This is a discussion on "Add / Delete CSS classes on hover" within the JavaScript Forum section. This forum, and the thread "Add / Delete CSS classes on hover are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Feb 14th, 2008, 17:04
Aso's Avatar
Aso Aso is offline
Chief Moderator

SuperMember
Join Date: Oct 2007
Location: UK
Posts: 942
Blog Entries: 2
Thanks: 5
Thanked 18 Times in 16 Posts
Send a message via Skype™ to Aso
Add / Delete CSS classes on hover

For example, when I hover over an anchor with ID 'block', how could I add a class 'on' to a div with ID 'pix', then remove it when 'un-hovered'?

Many thanks

Alex
Last Blog Entry: The Google Misconception (Feb 3rd, 2008)
Reply With Quote

  #2 (permalink)  
Old Feb 15th, 2008, 11:00
SuperMember

SuperMember
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Add / Delete CSS classes on hover

Something like this:
Code: Select all
function hoverClass() {
var x=document.getElementById("block")
var y=document.getElementById("pix")
x.onmouseover = function(){ y.className="on"}
x.onmouseout = function() { y.className="" }
}
Reply With Quote
Reply

Thread Tools

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
Using Classes tox0tes Flash & Multimedia Forum 1 Nov 9th, 2007 14:12
Classes in PHP pas2gether PHP Forum 11 Oct 13th, 2007 17:24
how to echo 2 classes geyids PHP Forum 3 Aug 9th, 2007 13:47
Classes pa007 PHP Forum 6 Jul 12th, 2007 15:22
Classes Gee Bee JavaScript Forum 1 Mar 8th, 2006 08:31


All times are GMT. The time now is 11:31.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

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 42 43