Job Category: Engineering

It seems we can't find what you're looking for.
document.addEventListener("DOMContentLoaded", function () { const resumeField = document.querySelector('input[name="resume_url"]'); if (resumeField) { fetch("/wp-json/mnw/v1/get-user-resume") .then(response => response.json()) .then(data => { if (data.resume_url) { resumeField.value = data.resume_url; } }); } });