Linking

Any problem with HTML can be discussed here.
Post Reply
j0sh4tran
Posts: 16
Joined: Sun Mar 05, 2006 12:39 am

Linking

Post by j0sh4tran »

How do I make it to where if I **** button "Forums" it goes to a new Link which is the forums?


kaos_frack
Posts: 504
Joined: Sat May 07, 2005 8:03 am
Contact:

Post 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/';" />
redwall_hp
Posts: 24
Joined: Thu Jun 01, 2006 3:22 pm

Post 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]
.
annamarie
Posts: 66
Joined: Tue Dec 26, 2006 2:18 pm

Post 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
raina
Posts: 213
Joined: Sat Jan 20, 2007 11:18 am
Contact:

Post 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..
Image
monk
Posts: 114
Joined: Thu Mar 31, 2005 1:56 am

Post 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
http://monk.thesmokylounge.com ... might be a bit too psychedelic for you.
mfrna
Posts: 57
Joined: Mon Jan 08, 2007 12:54 pm

Post 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]
Post Reply