↧
Answer by Ryan J. Morris for Safari and iOS devices not working with jQuery...
Alright, so it had to do with the JS file and the url for AJAX.Apparently, iOS/Safari does not read$(location).attr('protocol')So make sure to change that to $(location).attr('origin')Sheesh, such a...
View ArticleAnswer by Brian Ogden for Safari and iOS devices not working with jQuery AJAX...
Safari can do some heavy caching of AJAX requests. Perhaps you your previously tested your jQuery in Safari before the response was fully working and your API was giving an empty response.Try this to...
View ArticleSafari and iOS devices not working with jQuery AJAX call
I'm trying to get a cookie set through AJAX. It works on Android devices, Chrome, FF, Opera, Microsoft Edge, IE, except Safari and iOS devices. Is there something magical I'm missing about Safari and...
View Article