Created
May 9, 2012 18:24
-
-
Save opi/2647663 to your computer and use it in GitHub Desktop.
Enlarge Your Click
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.fn.enlargeYourClick = function(selector){ | |
$(selector).click(function(e){ | |
// don't handle if user click on a link, or if he click with mouse wheel | |
if (e.target.tagName != "A" && e.button != 1) { | |
var dest = $(this).find('a:first').attr('href'); | |
if (dest) {window.location = dest}; | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment