I have an iframe with parameters inside the src url like this:
<iframe src="http://www.form-page.com?suppressRedirect=1&A=1841" width="271px" height="295px" scrolling="no" frameborder="no" allowtransparency="true" style="position: absolute;left: 0;z-index: 1000;padding-left: 5px;"></iframe>
I need to get the parameters inside of the “form-page”
is there a way to do this in php or jquery?
Yes, in php check the $_GET array
the values should be 1 and 1841 respectively