Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a small problem with a script. I want to have a default action on :hover for those with javascript disabled but for those with javascript enabled i want another action (actually... same action, but i want to add a small transition effect).

So... How can i do this? I am using jquery.

share|improve this question

8 Answers

up vote 24 down vote accepted

Apply two classes to the relvant element. one contains the hover behaviour, and one contains all the other styling.

You can then use the jquery

$(element).removeClass('hover');

method to remove the class with the hover behaviour and then apply whatever you want using

$(element).bind('mouseover', function () { doSomething(); });
$(element).bind('mouseout', function () { doSomething(); });
share|improve this answer
1  
yeah, but this method is very obtrusive :( i want smth not so intrusive :-s – Ionut Staicu Jan 12 '09 at 19:29
not quite sure what you mean by obtrusive? – benlumley Jan 12 '09 at 19:32
4  
i have to modify way to much code to achieve this. But... i think reverse will work too:add a class :D 10x (a huge ray of light above my head just appeared!) – Ionut Staicu Jan 12 '09 at 19:36

How about putting the :hover fall-back in a stylesheet that is only loaded if javascript is disabled?

<noscript>
  <link href="noscript.css" rel="stylesheet" type="text/css" />
</noscript>
share|improve this answer
1  
Great answer... I would pick this. – NickC Feb 18 '10 at 8:41
5  
Nice but invalid XHTML markup. <link>-Tag must be in head, <noscript> tag must be in body. Since HTML5, noscript is allowed to be in head therefore the markup is valid HTML5 and may not be an issue. – mre Sep 25 '10 at 13:03

Here is a solution without hack classes:

CSS:

a {color: blue;}
a:hover {color: red;}

jQuery (uses jQueryUI to animate color):

$('a').hover( 
  function() {
    $(this)
      .css('color','blue')
      .animate({'color': 'red'}, 400);
  },
  function() {
    $(this)
      .animate({'color': 'blue'}, 400);
  }
);

demo

share|improve this answer
I actually like this answer the best. It's the only answer that solves the problem using only javascript. Thanks, kingjeffrey! – Mala Feb 9 '11 at 9:47

I think the best approach would be to leave the :hover behavior as a fall-back for non-javascript users and then use JQuery to create mouseover and mouseout event handlers to create a different effect for javascript-enabled users.

JQuery Javascript Library - Events/mouseover

share|improve this answer

I HAVE FOUND YOUR SOLUTION

basically you start out by redefining what you did with the css hover. (naturally you would do this by dynamically pulling the information from the style) then do whatever you want to in jquery with mouseover/mouseout events

this allows you to keep the :hover event in your css because jquery is binding your original styles to the element. In essence disabling the :hover event.

if your css is:

a.class {
  background-color: #000000;
  background-position: 0 0;
  }
a.class:hover {
  background-color: #ffffff;
  background-position: 100% -50px;
  }

your jquery would be somthing like:

jQuery("a.class").each(function () {

  var oldBackgroundColor = jQuery(this).css("backgroundColor");
  var oldBackgroundPosition = jQuery(this).css("backgroundPosition");

  jQuery(".class").css({
        'backgroundColor':oldBackgroundColor,
        'backgroundPosition':oldBackgroundPosition
  });

})
.bind("mouseover", function() {

  doSomething();

})
.bind("mouseout", function() {

  doSomething();

})
share|improve this answer

It's a very old question but I feel the urge to tell that modernizr provides a very good way to implement these kind of fallbacks.

Just include modernizr in the head and you can do these:

.no-js a:hover {
   set background color and stuff like that
   for cases when no javascript is present
}

On the other hand if you want to do this the other way and only set css when js is present

.js a:hover {
   set background color to default
   and the text decoration
}

It is more or less the same solution as adding a hover tag to the markup, but a little more robust.

share|improve this answer

You can globally enable behavior across the entire document by using a single css rule, and then disable that rule in one statement in javascript, while installing the new event handler.

Add a class to your html body tag:

<html>
  <body class="use-hover">
  ...

Default behavior in your css, let's say to bold links on hover:

body.use-hover a:hover
  font-weight: bold

And in your js, when run will remove the default behavior and do something else:

$(function() {
  $('body').removeClass('use-hover');
  $('a').live('mouseover', function() {
    // Do something when hovered
  }).live('mouseout', function() {
    // Do something after hover is lost
  });
});
share|improve this answer

You can achieve that using css I guess.

If you want to get rid of the background or some other default properties you can reset those parameters for all anchors.

For example I was facing problem with default background on hover. I fixed that issue by adding this:

 a:hover {
 background: 0;
 text-decoration: none;
 }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.