<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">adeccoMedical();
function adeccoMedical(){
    if($('.job--meta_logo img.bu-logo').length &gt; 0 || $('#hypApplyJob.btn-success').length &gt; 0){
        if($('.job--meta_logo img.bu-logo[src*="adecco_medical_logo_small"]').length&gt;0 || $('#hypApplyJob.btn-success[href*="medical"]').length&gt;0){
			addTextGeneric();
			changeStartDate();
        }
    }else{
        setTimeout(function(){adeccoMedical()},50);
    }
}
function changeStartDate() {
    var dateDom = $("#liJobStartDate .media .media-body span#ltJobStartDate time");
    if (dateDom.length != 0) {
        var now = new Date();
        var nowWH = new Date(now.getFullYear(), now.getMonth(), now.getDate()); // without Hour
        var compare = new Date(dateDom.text());
        var parts = dateDom.text().split('/');
        var mydate = new Date(parts[2], parts[1] - 1, parts[0]);

        var one_day = 1000 * 60 * 60 * 24;
        var difference_ms = mydate.getTime() - nowWH.getTime();
        var diffDay = Math.round(difference_ms / one_day);
        if (diffDay &lt; 1) {
            // var newDate = new Date(mydate.getFullYear(), mydate.getMonth(), mydate.getDate());
            var newDate = new Date(nowWH.getFullYear(), nowWH.getMonth(), nowWH.getDate());
            newDate.setDate(newDate.getDate() + 1);
            $(dateDom).text(newDate.getDate() + "/" + (newDate.getMonth() + 1) + "/" + newDate.getFullYear());
        }
    } else {
        setTimeout(changeStartDate, 50);
    }
}

function addTextGeneric() {
    var html = "&lt;p&gt;Adecco Medical est le spÃ©cialiste des solutions emplois dans le secteur du mÃ©dical, paramÃ©dical et pharmaceutique. La pluralitÃ© de nos contrats (CDI, CDD, intÃ©rim, vacation et CDI IntÃ©rimaire) nous permet de vous accompagner tout au long de votre carriÃ¨re. " +
                "Nos 95 agences en France et nos agences spÃ©cialisÃ©es (mÃ©decin, bloc, rÃ©Ã©ducation, petite enfance, handicap, pharmacieâ€¦) sont Ã&nbsp; vos cÃ´tÃ©s 7j/24h. GrÃ¢ce Ã&nbsp; notre appli mobile, choisissez vos missions et gÃ©rez votre planning Ã&nbsp; tout moment !&lt;/p&gt;";
    $(html+"&lt;br/&gt;").insertBefore(".job--description .job--task-specifics .VacancyDescription");
}
</pre></body></html>