Guest User

Untitled

a guest
Nov 23rd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. > <a class="coupon_click text-no-decoration" href="javascript:void(0);" id="coupon_id_<?php echo $couponBanner->getId(); ?>">
  2.  
  3. jQuery(document).ready(function() {
  4. jQuery('.coupon_click').click(function () {
  5. console.log('here');
  6. jQuery.ajax({
  7. type: 'POST',
  8. url: '<?php echo url_for('@blog_couponClicked') ?>',
  9. data: {videoId: <?php echo $video_id ?>, couponId: <?php echo $couponBanner->getId(); ?>},
  10. success: function (res) {
  11. if (res) {
  12. window.location.href = res;
  13. }
Add Comment
Please, Sign In to add comment