This is the jQuery code
$( "input#go" ).click(function()
{
if($("input#datepicker").val()!="")
{
$.ajax(
{
method: "POST",
url: "http://acoroster.rf.gd/roster.php",
data: { date : $("input#datepicker").val()},
dataType: 'json',
cache: false,
success : function(result)
{
//code
},
});
}
else
{
}
});
This work perfectly in some mobile chrome browsers. but in some mobile Chrome browsers its doesn't work.