Does anyone know of a solution to make Chrome and IE pass the query string attached to an Iframe src? My Iframe is supposed to load a page based on the parameter passed in the src but it looks like that parameter is omitted. It works fine in Firefox, also works in both Chrome and IE if I copy the src url and browse to it directly. It just doesn't work from the iframe's src:
<iframe id="tln-space" class="tln-space" src="http://sub.domain.co.za?uid=51cf83bf-44fe-4b10-bce7-051be48e8fbb" width="100%" frameborder="0" scrolling="yes" style="height: 600px;"></iframe>
In the above, it looks like uid
is not being passed.
And the main domain and the iframe domain are not the same but both using http.
Thanks in advance.
Morgs