I m using following jquery code
var ajax_url = "tmp/ajax.php"; $(document).on('click', 'input[name="radio_view"]', function () { var view_array = {}; view_array.session_id = $(this).attr('data-session_id'); view_array.buyer_id = $(this).attr('data-buyer_id'); view_array.lot_id = $(this).attr('data-lot_id'); view_array.view = $(this).val(); $.post(ajax_url, {act: 'save_view', view_array: view_array}); }); On full view in pc it is working fine the request will be sent to tmp/ajax.php but on mobile view the request not send in Network it is showing no request captured.
alert,console.logor adding breakpoint inside callback. If it is, then you now it's something else.