skip to Main Content

PHP Javascript Ajax window.location Not Working

There is software that uses Ajax Get. The code below does not work. What can I do? Javascript code: <script> function buy_product(cid) { $.ajax({ url: '/buyProduct/' + cid, type: 'get', success: function(response) { var result = $.parseJSON(response); if (result["success"]) {…

VIEW QUESTION
Back To Top
Search