(function() { // add css file to dom so IE8 recognizes it document.write(''); var divId = "BambooHR-ATS"; var el = document.getElementById(divId); if (!el) { document.write("
"); el = document.getElementById(divId); } var xmlhttp; var ieFlag = 0; if (('XDomainRequest' in window && window.XDomainRequest !== null) && document.documentMode < 10) { xmlhttp = new XDomainRequest(); ieFlag = 1; } else if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } else { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } var embedUrl = "https://amacon.bamboohr.com/jobs/embed2.php"; var departmentId = "0"; if (departmentId) { embedUrl += '?departmentId=' + encodeURIComponent(departmentId); } document.addEventListener('readystatechange', function(event) { if (event.target.readyState === "complete") { if (ieFlag == 1) { //needed for IE9 CORS xmlhttp.onload = loadd; xmlhttp.open("GET", embedUrl); xmlhttp.send(); } else { xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { var content = xmlhttp.responseText; el = document.getElementById(divId); if (el) el.innerHTML = content; function applyStylesToElementsContainingText(text) { const allElements = document.querySelectorAll('div, .BambooHR-ATS-Department-Header, span, el, a'); allElements.forEach(element => { if (element.textContent.includes(text)) { element.style.color = '#717a3a'; element.style.textDecoration = 'none'; element.style.fontFamily = "'News Gothic MT Std', 'Source Sans Pro'"; } }); } applyStylesToElementsContainingText('tableau'); applyStylesToElementsContainingText('wentworth'); const style = document.createElement('style'); style.innerHTML = ` @font-face { font-family: 'News Gothic MT Std'; src: url('https://www.amacon.com/NewsGothicMTStd.otf'); // Make sure the path is correct font-weight: normal; font-style: normal; } h2 { color: #05274d !important; font-family: 'News Gothic MT Std', 'Source Sans Pro' !important; } span { color: #05274d !important; text-decoration: none !important; font-family: 'News Gothic MT Std', 'Source Sans Pro' !important; } .BambooHR-ATS-Department-Header { color: black !important; font-size: 14px; font-family: 'News Gothic MT Std', 'Source Sans Pro' !important; font-weight: bold; } #${divId} a { color: #05274d !important; text-decoration: none !important; font-weight: normal !important; font-style: normal !important; font-family: 'News Gothic MT Std', 'Source Sans Pro' !important; } `; document.head.appendChild(style); // remove/hide elements with ids var idsToRemove = ["bhrDepartmentID_18752","bhrDepartmentID_18748","bhrDepartmentID_18750","bhrDepartmentID_18747","department_18941","department_18745","bhrPositionID_263","bhrPositionID_325","bhrDepartmentID_18745","bhrDepartmentID_18941","bhrPositionID_330","bhrPositionID_283","bhrPositionID_341","bhrPositionID_285","bhrDepartmentID_"]; idsToRemove.forEach(function(id) { var elementToRemove = document.getElementById(id); if (elementToRemove) { elementToRemove.remove(); } }); } } xmlhttp.open("GET", embedUrl, true); xmlhttp.send(); } } }); })();