Search
 
SCRIPT & CODE EXAMPLE
 

HTML

href on a button

<button onclick="window.location.href='/page2'">Continue</button>
Comment

buton html href

<!-- if you are on Window : --> 
<button onclick="window.location.href='page2.html'">
  Button
</button>

<!-- if you are on linux or macOS : -->
<button onclick="location.href='page2.html'">
  Button
</button>
Comment

button as href

<button onclick="location.href='http://www.example.com'" type="button">
         www.example.com</button>
Comment

javascript button href html

<button onclick="window.location='http://www.example.com';">Visit Page Now</button>
Comment

button with href

onClick={() => {window.location.href="https://www.golfballs.com/"}}
Comment

html button with href

<form method="get" action="/page2">
    <button type="submit">Continue</button>
</form>
Comment

button onclick href

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />

<button class="btn btn-success">¿Soy un botón o un enlace?</button>
<a href="www.google.com" class="btn btn-success">¿Soy un botón o un enlace?</a>
 EjecutarEsconder resultados
Comment

PREVIOUS NEXT
Code Example
Html :: html table line break 
Html :: link open new tab 
Html :: bootstrap 3 button 
Html :: html phone number validation pattern 
Html :: ion-select cancel text 
Html :: number dropdown html 
Html :: html structure 
Html :: blue glow input boostrap 4 
Html :: html favicon base64 
Html :: input limit file type html 
Html :: nuxt select option v-for 
Html :: dropdown bootstrap 
Html :: upload svg to wordpress 
Html :: swiper js arrows 
Html :: how do you make a link in html5 
Html :: calculator in html 
Html :: Bootstrap 5.2 Starter Template | bootstrap starter template 
Html :: onclick a tag 
Html :: onclick on radio button 
Html :: redirect to folder html 
Html :: html align text center 
Html :: html input date min 
Html :: click on toggle device toolbar page is not working 
Html :: convert ipynb to html 
Html :: import bootstrap 
Html :: how to add a image file in html 
Html :: open image in new tab html 
Html :: html js make dropdown list checkbox 
Html :: html color code for green 
Html :: td colspan all 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =