OK, I've put it in place, and it isn't pulling in the sub-page from the vendor's provided content. my relevant code sofar:
Code:
<script type="text/javascript">
function loadIframe(){
if (location.search.length > 0){
url = unescape(location.search.substring(1))
window.frames["portalcontent"].location=url
}
}
onload=loadIframe
</script>
Code:
<iframe id="portalcontent" src="http://www.aerospace.apply2jobs.com/" style="overflow:visible; width:100%;border:1px solid #333;height:400px;"></iframe>
and a link with the vendor's setup is looking like this:
Code:
<a href="http://mysite.com/careers/career-portal.html?http://theirsite.com/index.cfm?fuseaction=mExternal.showJob&RID=1&CurrentPage=1">Iframe page 1</a>
Is the extra ? in their link causing the problem? If so, is there a way to wrap it so it works, or?...
Bookmarks