Booking-hotline
by mtenschert
HTML
<i class="fa fa-phone add360" aria-hidden="true"></i>
<span class="product__shop-adress ng-binding" style="font-weight: bold;line-height: 130%;font-style: italic;">
<span style="text-transform: uppercase;color: #b62124 !important;">Booking-Hotline</span>
<br>
<span class="hotlineOpen">+44 139 731 3044</span>
<small class="hotlineClose">Opening hours: MO-SU 9-20</small>
</span>
<br>
JavaScript
//gets the current time.
var d = new Date();
if(d.getHours() >= 7 && d.getHours() <= 20 ){
$(".hotlineOpen").show();
$(".hotlineClose").hide();
}
else {
$(".hotlineOpen").hide();
$(".hotlineClose").show();
}