Iframe not passing url parameters

2.3k views Asked by At

I am loading a web page inside an iframe. If I load the page without the iframe I using the same url it works as expected. However if the iframe loads the url it doesn't work. I have tried googling it and all I can seem to find is how to pass variables in to an iframe.

the url is

http://www.angry-android.com/chartTest.html?start=2014-05-01&end=2014-06-01

and the iframe code I am using is

<iframe scrolling="no" src="http://www.angry-android.com/chartTest.html?start=2014-05-01&end=2014-06-01" frameBorder="0" width=315 height=200 ></iframe>

Any assistance would be greatly appreciated.

SOLVED

Turns out it is a firefox bug. The code worked as expected in other browsers. My apologies should have checked that before posting.

1

There are 1 answers

5
programking On BEST ANSWER

It seems to be working for me:

<iframe scrolling="no" src="http://www.angry-android.com/chartTest.html?start=2014-05-01&end=2014-06-01" frameBorder="0" width=315 height=200></iframe>