Jump to content

jquery post not working on ipad


fayne

Recommended Posts

I have a page where a user can change a date and it works with on input button that starts the following script.

This works perfectly on a computer with internet explorer or safari.

And even works on a android tablet.

The only problem is that it doesn't work on an ipad.

 

Does anyone here know how to change this, so that is also works on an ipad?

function ChangeDate(id, date) {
	$.ajax({
		type: "POST",
		url: "changedate.php",
		data: 'id='+id+'&date='+date,
		cache: false,
		success: function(data){}
	});
}
Link to comment
https://forums.phpfreaks.com/topic/279781-jquery-post-not-working-on-ipad/
Share on other sites

  • 3 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.