7 lines
210 B
JavaScript
7 lines
210 B
JavaScript
|
const notes_ = document.querySelector('#notes_');
|
||
|
|
||
|
const getNotes = () => {
|
||
|
document.querySelector('#content').innerHTML = 'Here is notes (in my imagination)';
|
||
|
}
|
||
|
|
||
|
notes_.addEventListener('click', getNotes);
|