Answers for "email and button bootstrap"

0

email and button bootstrap

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<a href="#" id="mailbutton" class="btn btn-primary">Send us a mail!</a>
Posted by: Guest on July-11-2021
0

email and button bootstrap

$(document).ready(function() {
  $('#mailbutton').click(function(event) {
    window.location = "mailto:[email protected]";
  });
});
Posted by: Guest on July-11-2021

Code answers related to "email and button bootstrap"

Browse Popular Code Answers by Language