Advertisement
Guest User

Untitled

a guest
Dec 27th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // Command Execusion.
  2. $(document).ready(function() {
  3. $(".command").click(function(){
  4.  
  5. var command = $(this).data('command');
  6.  
  7. $.ajax({
  8. url: '<?php echo get_stylesheet_directory_uri(); ?>/logic/CommandHandler.php',
  9. type: 'POST',
  10. data: {casparcg_command: command}
  11. });
  12.  
  13. });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement