$('body').on('click', '.buy_now', function(e){ var totalAmount = $(this).attr("data-amount"); var product_id = $(this).attr("data-id"); var options = { "key": "rzp_test_Za1P4A0iaPPwbq", "amount": (totalAmount*100), // 2000 paise = INR 20 "name": "Worst Generation", "description": "Payment", "image": "img/logoo.png", "handler": function (response){ $.ajax({ success: function (msg) { window.location.href = 'success.php'; } }); }, "theme": { "color": "#528FF0" } }; var rzp1 = new Razorpay(options); rzp1.open(); e.preventDefault(); });