Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > HTML
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

HTML HTML problems, maybe you are trying to code for MySpace. Get all the HTML coding help here for your website.

Google
Closed Thread
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 2:06 PM   #1
Bob
 
Bob's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Create Button/Hyperlink

There are two ways to create button links:

<p>
<button onclick="window.location='http://www.google.com/'" style="width:
180; height: 30">
Go to Google
</button></p>

<p>
<input type="button" value="Go to Google"
onClick="window.location='http://www.google.com/'"></p>

The <button> method allows widthxhieght specifications where the input
type="button" resizes according to the text.

-Bob


> How do I create a simple push button which jumps to a link when pressed?
>
> Thanks, -Bob
>
>



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Advertisements
Old 08-05-2007, 9:37 AM   #2
Suraj
MK PitStop Member
 
Suraj's Avatar
 
Join Date: Aug 2007
Posts: 89
My Photos: (0)
iTrader: (0)

Banked:
MK Cash: $5.35

I am Worth:
MK Cash: $0.05
Donate

Recent Blog: None

Suraj is on a distinguished road
Default

Quote:
Originally Posted by Bob View Post
There are two ways to create button links:

<p>
<button onclick="window.location='http://www.google.com/'" style="width:
180; height: 30">
Go to Google
</button></p>

<p>
<input type="button" value="Go to Google"
onClick="window.location='http://www.google.com/'"></p>

The <button> method allows widthxhieght specifications where the input
type="button" resizes according to the text.

-Bob


> How do I create a simple push button which jumps to a link when pressed?
>
> Thanks, -Bob
>
>
Am new to this.. So no idea about that. anyways, hope anyone will help you.
Suraj is offline  
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 08-05-2007, 3:34 PM   #3
Congee
MK PitStop Member
 
Congee's Avatar
 
Join Date: Aug 2007
Posts: 56
My Photos: (0)
iTrader: (0)

Banked:
MK Cash: $2.17

I am Worth:
MK Cash: $0.11
Donate

Recent Blog: None

Congee will become famous soon enoughCongee will become famous soon enough
Default

Besides those two, couldn't you also simply show an image link?
HTML Code:
<a href="some site here"><img src="some img"></a>
Granted, it's not an actual button, but it still gets the job done, doesn't it? To me, it's a lot simpler to remember how to write than what you wrote as well.
Congee is offline  
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 08-26-2007, 10:27 AM   #4
Harmassan
Junior Member
 
Harmassan's Avatar
 
Join Date: Aug 2007
Posts: 1
My Photos: (0)
iTrader: (0)

Banked:
MK Cash: $0.00

I am Worth:
MK Cash: $0.02
Donate

Recent Blog: None

Harmassan is on a distinguished road
Default hm

<a href="some site here"><img src="some img"></a>



I do that too...
Harmassan is offline  
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 08-26-2007, 3:22 PM   #5
dforthster
MK PitStop Member
 
dforthster's Avatar
 
Join Date: Aug 2007
Location: Philippines
Posts: 80
My Photos: (0)
iTrader: (0)

Banked:
MK Cash: $2.04

I am Worth:
MK Cash: $0.07
Donate

Recent Blog: None

dforthster is on a distinguished road
Default

forms can be used as a button too like

<form action="url"><input type="submit" value="button caption"></form>
dforthster is offline  
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 10-15-2007, 4:42 PM   #6
6742311
Member Level 3
 
6742311's Avatar
 
Join Date: Oct 2007
Posts: 39
My Photos: (0)
iTrader: (0)

Banked:
MK Cash: $0.00

I am Worth:
MK Cash: $0.80
Donate

Recent Blog: None

6742311 is on a distinguished road
Default

No Idea
6742311 is offline  
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 11-23-2007, 3:07 AM   #7
Adulu
MK PitStop Member
 
Adulu's Avatar
 
Join Date: Jul 2007
Location: Vahanga
Posts: 86
My Photos: (0)
iTrader: (0)

Banked:
MK Cash: $0.00

I am Worth:
MK Cash: $1.91
Donate

Recent Blog: None

Adulu is on a distinguished road
Default

PHP Code:
A form-submit image <button>
<
button type=submit>

Order <img src="adulu.gif" align=middle alt="Order Now"Now!

</
button>

A form-submit <button>
<
button type=submit>

Order Now!

</
button
Is this?

performance:The <button> Tag, A form-submit <button>
__________________
Wanna see Burj al arab Hotel Pictures and Las vegas hotel room pictures
or very luxury Luxor pictures of hotel,also Hilton hotel photos and Atlantis hotel videos.

Foreign Exchange Rate today!
Adulu is offline  
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 01-13-2008, 4:21 PM   #8
therealdeal
MK PitStop Member
 
therealdeal's Avatar
 
Join Date: Jan 2008
Posts: 72
My Photos: (0)
iTrader: (0)

Banked:
MK Cash: $0.00

I am Worth:
MK Cash: $1.78
Donate

Recent Blog: None

therealdeal is on a distinguished road
Default

Quote:
Originally Posted by Bob View Post
There are two ways to create button links:

<p>
<button onclick="window.location='http://www.google.com/'" style="width:
180; height: 30">
Go to Google
</button></p>

<p>
<input type="button" value="Go to Google"
onClick="window.location='http://www.google.com/'"></p>

The <button> method allows widthxhieght specifications where the input
type="button" resizes according to the text.

-Bob


> How do I create a simple push button which jumps to a link when pressed?
>
> Thanks, -Bob
>
>
Bob thanks for sharing this information..I need HTML code for another page.
See i need a button in page when i try to move the mouse arrow over that button that should move from that place..... Finally my mouse should never be over that button..What is the HTML for that one??
therealdeal is offline  
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 01-26-2008, 4:53 PM   #9
indieover
MK PitStop Member
 
indieover's Avatar
 
Join Date: Jan 2008
Posts: 102
My Photos: (0)
iTrader: (0)

Banked:
MK Cash: $0.00

I am Worth:
MK Cash: $2.09
Donate

Recent Blog: None

indieover is on a distinguished road
Default

Quote:
Originally Posted by Bob View Post
There are two ways to create button links:

<p>
<button onclick="window.location='http://www.google.com/'" style="width:
180; height: 30">
Go to Google
</button></p>

<p>
<input type="button" value="Go to Google"
onClick="window.location='http://www.google.com/'"></p>

The <button> method allows widthxhieght specifications where the input
type="button" resizes according to the text.

-Bob


> How do I create a simple push button which jumps to a link when pressed?
>
> Thanks, -Bob
>
>

this should be easy to follow. but yours sounds hard to learn. well i think that you should have added some text in that program code so that it will be easier to learn from beginners like me. and show what is the product would be like after putting that in the blog or websites.
indieover is offline  
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 01-27-2008, 3:53 AM   #10
baby83
MK PitStop Member
 
baby83's Avatar
 
Join Date: Jan 2008
Posts: 111
My Photos: (0)
iTrader: (0)

Banked:
MK Cash: $2.09

I am Worth:
MK Cash: $0.47
Donate

Recent Blog: None

baby83 is on a distinguished road
Default

thanks for the tips....i don't know anything about it, and so it is really helpful for me.
baby83 is offline  
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Featured Websites
Free Space
Free Space
Free Space Free Space
Closed Thread
Tags: ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Button Jim Graphics in general 1 06-11-2007 7:17 PM
Toolbar Refresh Button Help... David Boothe Database 1 06-10-2007 12:25 AM
simple 1px border for a web page button Stephan Graphics in general 0 05-31-2007 6:39 PM
Drop down list button not working Phil Ebay Technical Questions 1 05-31-2007 11:55 AM


Featured Websites




All times are GMT +1. The time now is 4:17 PM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98