Phone number swap
by Ryan Brackett
HTML
<div class="xwrapper">
<!--Start of Header and Navigation-->
<div class="top-notification" style="display: none!important"><a href="//www.nghs.com/location-updates?ref=ngpg" target="_blank">Click here</a> to learn about locations that have been impacted by weather.</div>
<!--Start of Masthead-->
<div class="xmasthead">
<div class="page-wrapper">
<ul class="top-links">
<li class="xhome"><a href="/">Home</a></li>
<li><a href="/careers">Careers</a></li>
<li><a href="/find-a-physician">Find A Provider</a></li>
<li><a href="/connect">Social Media</a></li>
<li class="xpayment"><a href="/payment">Pay My Bill</a></li>
</ul>
<div class="fb-like"><a href="https://www.facebook.com/myNGPG" target="_blank"><img src="/images/facebook-icon-001.gif" width="20" height="20" alt=""></a>
</div>
<div class="clearall"></div>
</div>
</div>
<!--End of Masthead-->
<div class="xheader">
<div class="page-wrapper">
<!--Start of Logo-->
<div class="xlogo">
<a href="/"><img src="/images/hdr-logo-001.gif" alt="Northeast Georgia Physicians Group"/></a>
</div>
<!--End of Logo-->
<!-- start PATIENT PORTAL -->
<div class="patient-portal">
<a href="/web-portals">Access our Web Portals</a>
</div>
<!-- end PATIENT PORTAL -->
<!-- start MOBILE BTN -->
<div class="mob-btn-wrapper">
<div id="mobnav-btn"><span>Menu</span></div>
</div>
<div class="mobnav-overlay"></div>
<!-- end MOBILE BTN -->
<!--Start of Search-->
<div class="hdr-contact-search">
<div class="hdr-contact">
<span> Practice Number <b>770-848-6190</b>
</div><div class="clearall"></div>
<div class="xsearch">
<div class="xsearch-wrapper">
<!--start GOOGLE CSE -->
<script>
(function() {
var cx = '003191738498952672832:uiakvi-ekci';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:')...
CSS
.location-map, .xnav { display: none;}
JavaScript
/*
var container = $("body");
var containerHTML = $(container).html();
var swapHTML = containerHTML
.replace(/770-848-5400/g, "770-848-9032") //NGPG Ortho Jefferson
.replace(/770-848-6190/g, "770-848-9031") //NGPG Ortho - All Locations
;
$(container).html(swapHTML);
*/
$(".phone-swap").each(function() {
var container = $(this);
var containerHTML = $(container).html();
var swapHTML = containerHTML
.replace(/770-848-5400/g, "770-848-9032") //NGPG Ortho Jefferson
.replace(/770-848-6190/g, "770-848-9031") //NGPG Ortho - All Locations
;
$(container).html(swapHTML);
});