Click to See Complete Forum and Search --> : Script Help
maverick
03-06-2003, 06:23 PM
Is there a script that will allow me to link to other sites and still display them within the outline of my own site - that is, the visitor is still 'inside' my site.
Thanks in advance.
Maverick
boojum
03-06-2003, 07:44 PM
you cant use frames?
maverick
03-07-2003, 09:45 AM
Originally posted by boojum
you cant use frames?
Correct - anyway I thought frames are not picked up by Search Engines.
Thanks
Maverick
jeanne
03-08-2003, 03:26 PM
<a onclick="NewWindow(this.href,'name','400','400','yes');return false;" href = "http://www.link" > description of link </a>
This works well right where the link is, very nice.
maverick
03-09-2003, 03:50 PM
Thanks jeanne.
jeanne
03-09-2003, 06:54 PM
You're welcome!
jeanne
03-11-2003, 03:59 PM
But if you're not ready to strangle me yet, I discover when doing my site over that you must put in in the head
<SCRIPT language=JavaScript>
<!-- Original: Eric King (eric_andrew_king@hotmail.com) -->
<!-- Web Site: http://redrival.com/eak/ -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// End --></script>
Very sorry -- not intentional. My grasp of what I'm doing is slight and I get very excited when anything seems to work at all!
Hope this NOW actually helps.
</script>
maverick
03-12-2003, 10:55 AM
jeanne,
I have'nt strangled anybody in ages.
I had actually gone and done a frames version but will check out your script now.
Thanks again
jeanne
03-13-2003, 09:06 AM
Glad to hear you're in a state of equanimity! It is a nice script (when you have it all, of course).
J