Find Jobs
Enter keywords (skills, job title, city, state, etc.)
jQuery(document).ready(function($) {
jQuery('[data-button="LinkPreview"]').tooltipster({
contentAsHTML: true,
content: '',
theme: 'tooltipster-shadow',
position: 'bottom',
maxWidth: 400,
functionBefore: function(origin, continueTooltip) {
continueTooltip();
var link_href=$(this).data('link')
if (origin.data('ajax') !== 'cached') {
jQuery.ajax({
type: 'POST',
url: 'http://wfc.ache.org/wp-admin/admin-ajax.php',
data: {
action : 'linkpreview',
link : link_href
},
success: function(data) {
origin.tooltipster('content', data).data('ajax', 'cached');
}
});
}
}
});
});
Enter keywords (skills, job title, city, state, etc.)