I've got a problem where I've got loads of child pages, and 1 main page that houses these subpages. The problem with that, being that the experience the application is trying to deliver needs to be nice and unified.
I have a menu that targets the iFrame to open URLs there, and I've got a bit of JS parent.document.title = document.title;
that changes the parent's title, but one more thing I want to try and do, is to change the URL, similar to how Facebook does. If I'm on a friend's profile, the top and bottom bars don't move, but in Facebook's case it's an Ajax load - and the profile shows, and the URL changes to their profile ID without actually shifting from 1 page to another.
I've read in a couple of places that the parent.document.url value is read only to child frames, but I'm not very sure and this is something I've wanted to do for a while now!
Summarizing: Is there any way to change the parent's URL through a child iFrame? Similar to the code pasted above?
Thank You! Much appreciation for any answers :)