Advertisement
alpa_s

Untitled

May 19th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php ob_start(); ?>
  2. <script type="text/javascript">
  3. (function ($) {
  4. $(document).on('click', '#submit-paid', function (e) {
  5. e.preventDefault();
  6.  
  7. var $this = $(this);
  8. var $form = $('#pay-form');
  9.  
  10. location.href = $this.attr('href') + '?' + $form.serialize();
  11. });
  12. })(jQuery);
  13. </script>
  14. <?php $script = ob_get_clean(); ?>
  15. <?php $this->registerJS(preg_replace(['/^\<script.+?\>/', '/\<\/script\>$/'], '', $script), View::POS_END); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement