I'm currently developing a clicktail clone. I've recorded all the mouse interactions and window scrolls and my plan is to play them back by opening the URL that has been recorded into an iframe and then have a mouse image move to the captured coordinates, images indicating when a click occurred and the iframe scrolling to the captured scroll positions
this was working nicely while I was viewing a page from my domain in the iframe, but as soon as I display a page from a different domain, I get access denied errors from the FF console and the same issues from IE
this is due to the Same origin policy for JavaScript.
I have been reading this article -> Ways to circumvent the same-origin policy
it seems that this is becoming an issue for many developers and there are hacks to get round it.
can anyone suggest a suitable hack for my situation ?