Recaptcha hide and show badge

JS if ($(‘.et_pb_contact_form’) .length) { $(window) .scroll(function() { var top_of_element = $(“.et_pb_contact_form”) .offset() .top; var bottom_of_element = $(“.et_pb_contact_form”) .offset() .top +...

Hover in / Out

$(‘#thing’).mouseenter(function() { $(‘.thing’).addClass(‘hovered’); }).mouseleave(function() { $(‘.thing’).removeClass(‘hovered’); });

Draw SVG line on scroll

/******* DRAW HOME SVG **********/ var path = document.querySelector(‘#home-svg-line-path’); var pathLength = path.getTotalLength() * 1.2; path.style.strokeDasharray = pathLength + ‘ ‘ + pathLength; path.style.strokeDashoffset = pathLength ;...

monster insight remove modal SEO

var cookieKeywordRemove = document.querySelector(‘.cli-modal’); cookieKeywordRemove.parentNode.removeChild(cookieKeywordRemove); var cookieKeywordRemove2 = document.querySelector(‘#cookie-law-info-again’);...

GEOCODE Maps sheets

function getGeocodingRegion() { return PropertiesService.getDocumentProperties().getProperty(‘GEOCODING_REGION’) || ‘us’; } /* function setGeocodingRegion(region) {...