Not working on chrome android but all other browsers are fine

Not working on chrome android but all other browsers are fine

Good day none of my events seem to work on chrome android but is fine on all other browsers including chrome on IOS. I have been trying to figure out the problem for days it is something on the ajax post that is breaking my page if I remove it the other scripts work. kind regards


Attached are my scripts

    <script>
        $.mobile.ajaxEnabled = false;
    </script>

    <script type="text/javascript">
        $(document).on('pageinit', function () {
            $("#radio3").attr("checked", "checked");
            $("input[name=radio3]").on("change",function () {
                if ($(this).val() == "choice-2") { 
                    $('#dCompany').removeClass("ui-screen-hidden");
                    $('#doffice').removeClass("ui-screen-hidden");
                    $('#dcomplex').addClass("ui-screen-hidden");
                    $("#txtCompanyName").attr('Required', true);
                }
                if ($(this).val() == "choice-1") { 
                    $('#dCompany').addClass("ui-screen-hidden");
                    $('#doffice').addClass("ui-screen-hidden");
                    $('#dcomplex').removeClass("ui-screen-hidden");
                    $("#txtCompanyName").removeAttr("Required");
                }
            });
        });
    </script>

   
   
   2

    <script type="text/javascript">
     
        $(document).on('pageinit', function () {
            $("#btnSearchSuburb").on("click",function () {
                var parameter = $("#txtSearch").val();
                document.getElementById('Divsearch').style.display = 'block';
                                 
                $.ajax({
                    type: "POST",
                    url: "/GetSuburb.asmx/BindDropdownlist",
                    data: JSON.stringify({ Filter: parameter }),
                    dataType: "json",
                    contentType: "application/json; charset=utf-8",
                    success: function (data) {
                        var jsdata = JSON.parse(data.d);
                        $('#<%=Select1.ClientID%>').empty();

                        $.each(jsdata, function (key, value) {

                            $('#<%=Select1.ClientID%>').append($("<option></option>").val(value.Addressname).html(value.ShortAddressName));
                        });
                        $("#Select1 option[0]").attr('selected', 'selected');
                        $('#<%=Select1.ClientID%>').selectmenu('refresh');
                                              
                        var Data = $('#<%=Select1.ClientID%>').val();
                        var arr = Data.split(',');
                        $('#ZoneId').val(arr[0]);
                        $('#txtSearch').val(arr[1]);
                        $('#txtPostal').val(arr[2]);
                        $('#txtCity').val(arr[3]);
                        $('#ltxtSearch').removeClass("ui-screen-hidden");
                        $('#txtPostal').prop('readonly', true);
                        $('#txtCity').prop('readonly', true);
                        document.getElementById('Divsearch').style.display = 'none';                                                                                        
                    },
                    error: function (data) {
                        document.getElementById('Divsearch').style.display = 'none';
                    }                    
                });
                document.getElementById('Divsearch').style.display = 'none';
                });
            });
    </script>