Skip to content

Instantly share code, notes, and snippets.

@dprea
Created February 9, 2016 08:44
Show Gist options
  • Save dprea/4f924b8b999799a031af to your computer and use it in GitHub Desktop.
Save dprea/4f924b8b999799a031af to your computer and use it in GitHub Desktop.
Small jQuery Script for finding Workable.com Links
/**
* 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