vickiediablos
03-01-2003, 02:59 PM
Does anybody know how to make a remote comtrol-like thing? Something like a small popup that stays on the page and not closed when clicked... yeh you know what I mean. A remote control.
|
View Full Version : Does anybody know...? vickiediablos 03-01-2003, 02:59 PM Does anybody know how to make a remote comtrol-like thing? Something like a small popup that stays on the page and not closed when clicked... yeh you know what I mean. A remote control. JaclynArt 03-01-2003, 03:14 PM u might mean a popup or a chromeless... if u juss target it to a certain frame or something...it'll stay open and the link will open up where ya want it... Sheila 03-01-2003, 03:15 PM Maybe something like this... http://www.dynamicdrive.com/dynamicindex11/abox2.htm vickiediablos 03-01-2003, 03:19 PM How exactly do you target it to somewhere else? I know about _blank, _top and stuff but to target another frame...? StyGomez 03-01-2003, 03:44 PM http://www.lissaexplains.com/frames.shtml <html> <head> <title>My Page</title> </head> <frameset cols=20%,80%> <frame src="left.html" name="leftside"> <frame src="right.html" name="rightside"> </frameset> <body> </body> <noframes> <a href="your main page.html">Click Here</a> </noframes> </html> K, you see where I highlighted in red? When you put the frame src, you also give the frame a name. You use the name when you want to target that frame. If you wanted to target the right side, you'd put <a href="somewhere.html" target="rightside"> :) |