Skip to content

Instantly share code, notes, and snippets.

@tribulant
Created June 27, 2017 20:09
Show Gist options
  • Save tribulant/5bc4934f282c3f04358b390d0de2ac35 to your computer and use it in GitHub Desktop.
Save tribulant/5bc4934f282c3f04358b390d0de2ac35 to your computer and use it in GitHub Desktop.
Send Button Custom Message/Alert
<?php
function my_admin_head() {
?>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#sendbutton').on('click', function(event) {
alert('the send/queue button was clicked');
});
});
</script>
<?php
}
add_action('admin_head', 'my_admin_head', 10, 1);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment