wulkanowy-web/files/js/notes.js

7 lines
210 B
JavaScript
Raw Normal View History

2021-01-09 20:58:49 +01:00
const notes_ = document.querySelector('#notes_');
const getNotes = () => {
document.querySelector('#content').innerHTML = 'Here is notes (in my imagination)';
}
notes_.addEventListener('click', getNotes);