Wed May 03 2017
Copied to clipboard! Copy reply
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

<script>

$( document ).ready(function() {

$('.nav-items').append('<li style="background-color:#0098db" class="nav-item noselect"><button id="js-rsee-lightbox-trigger" tabindex="0">PRICING</button></li>');

var $rs_ee_product_lightboxes = $('#rs-ee-product-lightboxes-bg');

$('#rs-ee-product-close, #js-rsee-lightbox-trigger').click(function(){
    $rs_ee_product_lightboxes.fadeToggle('active');
    $('.demo-wrap').toggle()
})

$('.header .cta-container').click(
    function(e){        
        $('#'+e.target.className+'-content').show();
        $('.'+e.target.className).hide();                                
        $('html, body').animate({
                  scrollTop:   $('#'+e.target.className+'-content').parent().offset().top
             }, 1000);         
    }
)    
});

</script>