Public Access
0
0
Files
blanks/js/DOM/Функции.md

15 lines
326 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
- Получить элемент. Его нет, возвращаем null
```js
function getEl(el){
return document.querySelector(el) ?? null;
}
```
- Загрузка скрипта после полной загрузки документа
```js
document.addEventListener('DOMContentLoaded', function() {
})
```