|   |   |   | ||||
| Welcome to the GoFuckYourself.com - Adult Webmaster 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 us. | 
|    | 
| 
 | |||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. | 
|  | Thread Tools | 
|  09-22-2021, 01:52 PM | #1 | 
| Confirmed User Industry Role:  Join Date: Oct 2018 Location: New Orleans, Louisiana. / Newcastle, England. 
					Posts: 1,225
				 |  Quick HTML Question <button></button> Is it possible to make this element clickable to open a URL instead of a form field? If so how would I go about doing that? I've checked here ( https://www.w3schools.com/tags/tag_button.asp ) but can't figure out how (or if) that is even possible after doing a little playing with the code :/ Thanks. | 
|   |           | 
|  09-22-2021, 01:57 PM | #2 | 
| Confirmed User Industry Role:  Join Date: Apr 2019 
					Posts: 657
				 | Well on that W3Schools page change: "alert('Hello world!')" to "window.open('https://www.duckduckgo.com')", like: <button type="button" onclick="window.open('https://www.duckduckgo.com')">Click Me!</button> 
				__________________ __________________ | 
|   |           | 
|  09-22-2021, 02:03 PM | #3 | 
| (>^_^)b Industry Role:  Join Date: Dec 2011 
					Posts: 7,224
				 | I've done it this way before: Code: <style>
        .buttonlink {
 //Style Stuff Yourself
        }
    </style>
/head
    <button class="buttonlink" 
    onclick="window.location.href = 'https://your.link';">
        Link Text in button
    </button>
				__________________  Join the BEST cam affiliate program on the internet! I've referred over $1.7mil in spending this past year, you should join in.    I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..   | 
|   |           | 
|  09-22-2021, 02:40 PM | #4 | 
| Confirmed User Industry Role:  Join Date: Oct 2018 Location: New Orleans, Louisiana. / Newcastle, England. 
					Posts: 1,225
				 | Perfect, thank you both for the help, I was messing up the onclick element   | 
|   |           | 
|  09-22-2021, 02:42 PM | #5 | 
| Making PHP work Industry Role:  Join Date: Nov 2002 Location: 🌎🌅🌈🌇 
					Posts: 20,645
				 | Why make it harder? <a href="https://google.com"><button type="button">Click Me!</button></a>  | 
|   |           | 
|  09-22-2021, 03:06 PM | #6 | |
| see you later, I'm gone Industry Role:  Join Date: Oct 2002 
					Posts: 14,127
				 | Quote: 
 . 
				__________________ All cookies cleared! | |
|   |           | 
|  09-22-2021, 03:07 PM | #7 | |
| (>^_^)b Industry Role:  Join Date: Dec 2011 
					Posts: 7,224
				 | Quote: 
  
				__________________  Join the BEST cam affiliate program on the internet! I've referred over $1.7mil in spending this past year, you should join in.    I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..   | |
|   |           | 
|  09-22-2021, 03:31 PM | #8 | 
| (>^_^)b Industry Role:  Join Date: Dec 2011 
					Posts: 7,224
				 | btw just putting <a> around <button> isn't valid HTML5 You can nest <a> around elements except for these: <a> <audio> (if the controls attribute is present) <button> <details> <embed> <iframe> <img> (if the usemap attribute is present) <input> (if the type attribute is not in the hidden state) <keygen> <label> <menu> (if the type attribute is in the toolbar state) <object> (if the usemap attribute is present) <select> <textarea> <video> (if the controls attribute is present) 
				__________________  Join the BEST cam affiliate program on the internet! I've referred over $1.7mil in spending this past year, you should join in.    I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..   | 
|   |           | 
|  09-22-2021, 05:44 PM | #9 | |
| Making PHP work Industry Role:  Join Date: Nov 2002 Location: 🌎🌅🌈🌇 
					Posts: 20,645
				 | Quote: 
 But why even bother to use a button like that when you can just style the link itself? <style> .link { padding:5px; font-size:20px; color:white; background:blue; border-radius:7px; border:solid magenta 1px; text-decoration:none; } .link:hover{ color:yellow; background:magenta; box-shadow: 0px 0px 5px 0px #999999; } .link:active{ color:darkgreen; background:yellow; } </style> <br> <a class="link" href="https://google.com/">Google</a>  | |
|   |           | 
|  09-22-2021, 06:14 PM | #10 | |
| (>^_^)b Industry Role:  Join Date: Dec 2011 
					Posts: 7,224
				 | Quote: 
  
				__________________  Join the BEST cam affiliate program on the internet! I've referred over $1.7mil in spending this past year, you should join in.    I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..   | |
|   |           |