Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Html5 History Api - pushState from a domain to a subdomain

I have a website as the landing and information page to a web portal type of application.

I need the link that goes to the portal to set off an animation that beautifully transitions to the portal view (navigation slides out, new navigation slides in, various widgets fade out, new ones fade in, etc).

However, I also need the url to go from www.mydomain.com to portal.mydomain.com.

I'm willing to go to any length to have BOTH, the animation to load the portal and the url to be a subdomain.

As it stands I understand doing this would violate the security policy and not be allowed, but there is no way to achieve a fluid transition into the portal if a reload is to be had.

Is there ANYTHING that can be done? Perhaps some way to establish explicit trust between the two domains.

like image 805
parliament Avatar asked Feb 11 '13 07:02

parliament


1 Answers

It can't be done. This is by design. There are no exceptions.

From the Mozilla pushState documentation:

The new URL must be of the same origin as the current URL; otherwise, pushState() will throw an exception.

like image 112
Sean Hogan Avatar answered Sep 23 '22 11:09

Sean Hogan