Advertisement
wpgenie

confirm bid

Dec 7th, 2015
1,273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. function print_my_inline_script() {
  2.   if ( is_product()) {
  3.         ?>
  4.         <script type="text/javascript">
  5.             jQuery('.auction_form.cart').submit(function() {
  6.                 var c = confirm("Click OK to continue?");
  7.                 return c; //you can just return c because it will be true or false
  8.             });
  9.         </script>
  10.         <?php
  11.   }
  12. }
  13. add_action( 'wp_footer', 'print_my_inline_script' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement