(function(){
$('.wpcf7-form').on('keyup change', 'input[type=text], textarea', ev=>{
let currentText = $(ev.currentTarget).val()
if (currentText.search("poste")+1 || currentText.search("remplacement")+1 || currentText.search("Poste")+1 || currentText.search("Remplacement")+1){
$('
Souhaitez-vous plutôt publier une annonce de poste / remplacement ?
<').dialog({
title:"Demande d'annonce détectée",
minWidth:500,
modal:true,
draggable: false,
resizable: false,
buttons: [
{
text: "Oui, publier un poste",
icon: "ui-icon-circle-check",
click: function() {
window.location = "/publier-un-poste"
}
}, {
text: "Non, continuer",
icon: "ui-icon-circle-close",
click: function() {
$( this ).dialog( "destroy" );
}
}
]
});
$('.wpcf7-form').off()
}
})
})()