vote up 2 vote down star
1

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.

flag

3 Answers

vote up 6 vote down check

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(); });
link|flag
yeah, but this method is very obtrusive :( i want smth not so intrusive :-s – Ionut Staicu Jan 12 at 19:29
not quite sure what you mean by obtrusive? – benlumley Jan 12 at 19:32
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 at 19:36
vote up 2 vote down

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

link|flag
vote up 0 vote down

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>
link|flag

Your Answer

Get an OpenID
or

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