const box = document.getElementById(‘box’);
const text = document.getElementById(‘text’);
box.addEventListener(‘blur’, () => {
text.textContent = ‘Click Here To Give Your Ratings’;
console.log(‘Blur event fired’);`
})
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
const box = document.getElementById(‘box’);
const text = document.getElementById(‘text’);
box.addEventListener(‘blur’, () => {
text.textContent = ‘Click Here To Give Your Ratings’;
console.log(‘Blur event fired’);`
})