Coders! Need Some Help

newbie2008

New member
May 20, 2008
31
0
0
LA, CA
Hey All,

I know next to nothing when it comes to coding so I was hoping to see if I can get some help. I need some who understands client side scripting. I have real estate site that has rotating images
featuring "featured properties" that when clicked opens up into its own window without my template. I need for it to open within an iframe within my template.html file. I was told to follow Function to Read Parameters Passed Via Query Strings as a guide but I'm not good enough (or too stupid) to quite understand what is occurring there.

The script that is used for the rotating images is:
<script>idxsite.createFeaturedProperties('loginid', 'mypage.html?url=', true); </script>

Now. How do I use the GET request URL to create and iframe of the linked content?

[FONT=&quot]Thanks in advance.:D

P.S. I'm sure I'm missing some additional important details so please let me know what you need and I'll post it. Thanks.

[/FONT]
 


The values you need ( after using the function you just linked to ) are in the array qsParm.

if you want to know what is in there, print out the array like so:

Code:
for(var i=0;i<qsParm.length;i++){
document.write("qsParm["+i+"] ="+qsParm[i]+"<br />");
}
 
The values you need ( after using the function you just linked to ) are in the array qsParm.

if you want to know what is in there, print out the array like so:

Code:
for(var i=0;i<qsParm.length;i++){
document.write("qsParm["+i+"] ="+qsParm[i]+"<br />");
}



Thank you for replying! Would this code snippet go in the iframe page or the top page?