tech4biz/assets/js/home/tech4biz-RAD-template-quick-fix.js
2024-10-24 17:20:08 +05:30

18 lines
503 B
JavaScript

// RAD triage/quick fix JS - 4/24/2023
//Top Nav - Accenture Logo Temporary Fix - JPPL - 5/12/2023
$(function(){
$(".cmp-logo__svg-wrapper svg title").text("Accenture");
})
$(window).on("load", function() {
var w_href = window.location.href
, target_hash = "#" + w_href.split("#")[1];
if (w_href.indexOf("#") > -1) {
$("html, body").animate({
scrollTop: $(target_hash).offset().top - $(".cmp-global-header__navbar-container").height()
}, 1000);
}
})