I have a PhoneGap/Corodova Project for iOS. Whilst building on the iOS simulator I used Jquery Cookies and they were fine. However, now that I have the app on my device for testing, they no longer work. I'm guessing this is just something iOS doesnt support.
Does anyone know a way to do client side cookies for iOS?
PS: My current cookies code (just in case its useful):
<script type="text/javascript" charset="utf-8" src="js/jquery.cookie.js"></script>
<!--STARTUP SCREEN COOKIE SETTER-->
<script type="text/javascript">
$(function() {
var cookiedate = new Date();
cookiedate.setTime(cookiedate.getTime() + (60 * 60 * 1000));
$.cookie("startupscreen", "checked", { expires: cookiedate, path: '/' })
});
</script>