Contact Us menu

Hide menu when click away from it.

by Paul Leech

HTML

<div class="contact-us-popup__contact-options">
  <ul>
    <li><a href="tel:8005551212">Telephone</a></li>
    <li><a href="sms:+18005551212">Text Message</a></li>
    <li>Live Chat</li>
    <li>Email</li>
    <li>Facebook Messenger</li>
  </ul>
</div>
<div class="contact-us-popup">Contact Us</div>

CSS

* {
  font-family: sans-serif;
}

body {
  background: #eee;
}

.contact-us-popup {
  position: fixed;
  width: 150px;
  left: 50%;
  margin-left: -75px;
  text-align: center;
  bottom: 0;
  background-color: #0000FF;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.contact-us-popup__contact-options {
  position: fixed;
  display: none;
  width: 150px;
  left: 50%;
  margin-left: -75px;
  text-align: left;
  bottom: 30px;
  background-color: #fff;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 5px;
}

.contact-us-popup__contact-options ul {
  list-style: square;
  margin-left: -20px;
}

.highlight {
  background-color: green;
}

JavaScript

$('.contact-us-popup').on('click', function(e) {
  e.stopPropagation();
  $('.contact-us-popup__contact-options').slideToggle();
});
$('.contact-us-popup__contact-options').on('click', function(e) {
  e.stopPropagation();
  $('.contact-us-popup__contact-options').slideToggle(1250);
});

$(document).on('click', function(e) {
  if($('.contact-us-popup__contact-options').is(":visible")) {
  	$('.contact-us-popup__contact-options').slideUp();
  }
});