Created
February 9, 2016 08:44
-
-
Save dprea/4f924b8b999799a031af to your computer and use it in GitHub Desktop.
Small jQuery Script for finding Workable.com Links
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
/** | |
* Makes the Workable Job Items(.whr-item) Clickable | |
* | |
* @author: Dustin Rea | |
*/ | |
var whrClickable = function() { | |
setTimeout(function() { | |
jQuery('.whr-item').click(function() { | |
window.location = jQuery(this).find('.external').attr('href'); | |
return false; | |
}); | |
}, 2000); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment