Explore the Best of AdriatiCON 2024
Sign Up to Explore the Best of AdriatiCON 2024!
AdriatiCON 2024 brought together the freshest tech, business, and HR insights and showcased the best Salesforce and Gecko HRM cases across the Adria region.
Missed AdriatiCON 2024 and want to catch up? Or just looking to refresh your memory? No problem!
Apply here to get AdriatiCON 2024 materials delivered to your inbox! ▶️
Get AdriatiCON 2024 materials delivered to your inbox!
var labels = document.querySelectorAll("p.pd-text label, p.pd-select label, p.pd-textarea label");
var i = labels.length;
while (i--) {
var label = labels.item(i);
var text = label.textContent;
label.parentNode.classList.contains("required") && (text += " *");
var nextElement = label.nextElementSibling;
if (nextElement) {
if (nextElement.tagName == 'SELECT') {
nextElement.options[0].text = text;
} else {
nextElement.setAttribute("placeholder", text);
}
label.parentNode.removeChild(label);
}
}
var elements = document.querySelectorAll('.errors, .no-label');
Array.prototype.forEach.call(elements, function(el, i) {
el.parentNode.removeChild(el);
});