Intro.js Alternativa gratuita
const driver = new Driver();
driver.highlight('#create-post');
Abdelatif Laghjaj
const driver = new Driver();
driver.highlight('#create-post');
const focusDriver = new Driver();
// Highlight the section on focus
document.getElementById('creation-input')
.addEventListener('focus', (e) => {
focusDriver.focus('#creation-input');
});