Last active
December 14, 2015 23:28
-
-
Save rosshanney/5165325 to your computer and use it in GitHub Desktop.
Popup for GCE more info 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
<?php | |
/* | |
Plugin name: Popup for GCE more info links | |
*/ | |
function gce_more_info_popup() { | |
?> | |
<script> | |
jQuery('body').on('click', '.gce-popup-link', function(e){ | |
Popup(jQuery(this).attr('href'), jQuery(this).attr('id'), 400, 300); | |
return false; | |
}); | |
</script> | |
<?php | |
} | |
add_action( 'wp_footer', 'gce_more_info_popup' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment