Advertisement
GochiSiyan

change button beviour

Jan 7th, 2021
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. jQuery('.jpw-wrapper .button').on('click',function(e){
  2. e.preventDefault();
  3. jQuery.ajax({
  4. url:jnews_ajax_url,
  5. type:'post',
  6. dataType:'json',
  7. data:{product_id:$(this).attr('data-product_id'),
  8. action: 'add_paywall_product'
  9. }}).done(function (data){
  10. if(data.redirect){
  11. window.location.href=data.redirect
  12. }else{
  13. location.reload()
  14. }
  15. }
  16. )
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement