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

Can hover and click functions be combined into one, so for example:

click:

$('#target').click(function() {
  // common operation
});

hover:

$('#target').hover(function () {
    // common operation
});

can they be combined into one function?

Thanks!

share|improve this question
2  
Seems like it would require less effort to actually try it out than to ask the question here. Have you tried it yet? If so, what was the result? – Tex Mar 12 '10 at 10:33
2  
+1 I found this useful – John Magnolia Mar 21 '12 at 22:30

6 Answers

up vote 17 down vote accepted

Use basic programming composition: create a method and pass the same function to click and hover as a callback.

var hoverOrClick = function () {
    // do something common
}
$('#target').click(hoverOrClick).hover(hoverOrClick);

Second way: use bindon:

$('#target').on('click hover', function () {
    // Do something for both
});
share|improve this answer
1  
The jquery "on" function is now recommend over using bind. But it works in the same way, just replace "bind" with "on". – Matthew Wilcoxson Jul 13 '12 at 13:30

You can use .bind() or .live() whichever is appropriate, but no need to name the function:

$('#target').bind('click hover', function () {
 // common operation
});

or if you were doing this on lots of element (not much sense for an IE unless the element changes):

$('#target').live('click hover', function () {
 // common operation
});

Note, this will only bind the first hover argument, the mouseover event, it won't hook anything to the mouseleave event.

share|improve this answer
$("#target").hover(function(){
  $(this).click();
}).click(function(){
  //common function
});
share|improve this answer
Neat makeshift solution. – James Poulson Nov 16 '12 at 3:34

You could also use bind:

$('#myelement').bind('click hover', function yourCommonHandler (e) {
   // Your handler here
});
share|improve this answer

i think best approach is to make a common method and call in hover and click events.

share|improve this answer
var hoverAndClick = function() {
    // Your actions here
} ;

$("#target").hover( hoverAndClick ).click( hoverAndClick ) ;
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.