Держи:
// If the cookie is not set to 1
if(document.cookie.indexOf('tourIsDone=1') < 0){
//Launch the tour
var enjoyhint_instance = new EnjoyHint({});
var enjoyhint_script_steps = [
{
'next #title' : 'Введите заголовок статьи.',
'nextButton' : {className: "myNext", text: "Далее"},
'skipButton' : {className: "mySkip", text: "Прекратить"},
}
];
enjoyhint_instance.set(enjoyhint_script_steps);
enjoyhint_instance.run();
// Set the cookie (you can also do it once the tour is finished)
document.cookie = "tourIsDone=1";
} else {
// blablabla
}