It's an online school. If a user is signed in to the school, the domain "justudy.co.il" will have a cookie of "signed_in" with the value 'true'.
$.cookie("signed_in") returns 'true'
if he is signed out
$.cookie("signed_in") returns 'null'
I want to check if the cookie "signed_in" on the rootdomain "justudy.co.il" is true, using javascript on the page "forum.justudy.co.il". Something like
$.get('justudy.co.il').cookie("signed_in") that will return 'true' or 'null'
that is a made up code obviously.
is that possible? and if so, how? the forum is one platform (forum platform) while the school is on a different platform (school platform)
Thanks a lot :)