Page 1 of 1
Linking
Posted: Sun Mar 05, 2006 1:39 am
by j0sh4tran
How do I make it to where if I **** button "Forums" it goes to a new Link which is the forums?
Posted: Sat Mar 11, 2006 10:11 am
by kaos_frack
wow, what a sentence
it's bit difficult to get your point
as long as i understand you just want to link a button to your forum page
use this:
<input type="button" ****="location.href='
http://www.yoursite.com/forum/';" />
Posted: Thu Jun 01, 2006 10:55 pm
by redwall_hp
did u want a button or a normal link like
http://www.google.com? If u wanted a link like that, you'd do
Code: Select all
[url=http://www.google.com]Google[/url]
.
Posted: Tue Dec 26, 2006 5:01 pm
by annamarie
u mean like
<a href="
http://www.google.com" target="_blank">google</a>
that code will bring u to google on diferent windows
Posted: Sun Jan 21, 2007 10:10 am
by raina
if u use dreamweaver u can just higlight the words and at the down u can find target ..type the required url there .. thats it..
Posted: Mon Jan 22, 2007 9:04 am
by monk
i dont quirte get the question either.... i would probably be able to help tho? do you want a normal link? or a button? do you know any HTML at all?
peace.
m
Posted: Sat Feb 03, 2007 6:20 pm
by mfrna
here you go
there's some code that goes in your <head> and some in your <body> tags
[HTML]<html>
<head>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=800,height=600,left = 0,top = 0');");
}
// End -->
</script>
<title>New Page 1</title>
</head>
<body>
<form>
<input type=button value="Open the Popup Window" ****="javascript:popUp('
http://mysie.com/forum')">
</form>
</body>
</html>[/HTML]