javascript - Making referrer and querystring available to a frame under a different domain -
i need deal website page big frame loads website content. can't change this.
<html> <!-- page lives under mydomain.com --> <head> <title>my beautiful website</title> </head> <frameset rows="100%" border="0" frameborder="0"> <!-- website actual content loaded subdir of different domain --> <frame src="http://mydifferentdomain.com/subdir" name="my-ugly-frame"> </frameset> </html>
i need make referrer , query string informations of mydomain.com, available javascript code runs inside frame, can understand how people reach website.
is there way circumvent cross domain restrictions?
thanks.
is there way circumvent cross domain restrictions?
no. data has passed explicitly.
the frameset page include data in query string of uri used load embedded page … i'm guessing domain hosting dns server deprived , that isn't option.
Comments
Post a Comment