I have developed an engine that I need to customize in order to be used on several websites. I decided to display it through an iframe and I want to pass a simple parameter through the url to distinguish between different client sites. I want to assign the variable in each site from the parent page like so:
<iframe src="...engine.com/targetpage.asp?id=1">
and say for another client site
<iframe src="..engine.com/targetpage.asp?id=2">
How do I process that in the target page? I tried a few JS & JQuery scripts but Im not to proficient with them so I either get null values or a "Method Not Allowed" error.