How do I create multiple views of the same page without calling the page twice? My code works correctly except that the page I am framing uses search results so if I enter it like this it actually shows two different pages:
Code:
[advanced_iframe securitykey="xxxx" use_shortcode_attributes_only="true" src="http://www.xyz.com" id="advanced_iframe_14" height="600" width="1200" iframe_zoom="3.66" scrolling="yes" show_part_of_iframe="true" show_part_of_iframe_x="100" show_part_of_iframe_y="100" show_part_of_iframe_width="1200" show_part_of_iframe_height="260"]
Code:
[advanced_iframe securitykey="xxxx" use_shortcode_attributes_only="true" src="http://www.xyz.com" id="advanced_iframe_15" height="600" width="1200" iframe_zoom="1" scrolling="yes" show_part_of_iframe="true" show_part_of_iframe_x="100" show_part_of_iframe_y="500" show_part_of_iframe_width="1200" show_part_of_iframe_height="260"]
Can I somehow set the second iframe to use the page that from the first one?