sportigurl
02-17-2003, 09:51 PM
hey! I want to make it so that if i click on a link in the left frame all the pages load into the right frame and then that targets into the main frame.. please reply ASAP!
|
View Full Version : targeting 3 frames sportigurl 02-17-2003, 09:51 PM hey! I want to make it so that if i click on a link in the left frame all the pages load into the right frame and then that targets into the main frame.. please reply ASAP! Andyman 02-18-2003, 01:22 AM I haven't tried this method, but maybe you can put in *target="rightside,leftside,etc"* . or I think you can make the whole page reload again by putting this into the link tag (<a href)> *target='_new'* sportigurl 02-18-2003, 02:35 AM I know how to target but I need to know how to make it so that if u click on a link in the left frame a menu of all the pages open up in the right frame n then when u click on the page in the right frame it opens up into the main frame lefty 02-18-2003, 03:06 AM You'd target the other frame just as you would the first. :) Let's say you have links in the left frame. You target those to "right", and the page opens. Then the links in the right frame would be targeted to "main", and they'll open in the center. Does that make sense? joshg678 02-18-2003, 04:43 AM I know how to make the frames work. In the Html file (the one which tells the frame's sizes and what page to use for what.) USe this code line: <FRAME src="yourpagehere.html" name="left"> <FRAME src="yourpagehere.html"name="right"> Then in the page where you have the links have this code line: <a href="whateveryouhave.html" target="right"> or <a href="whateveryouhave.html" target="left"> Hope that helps Email me if you need more help |