jQuery
At the moment I’m doing an attendance app, which was given to me and try to simplify by applying the MVO model.
Realized I didn’t fully understand jQuery so took a detour and went through some classes. A few things made it much clearer for me.
E.g. $ is abbreviation for jQuery, jQuery is just a function and object. I understood much better children, parent and siblings of the DOM. E.g.
If I have the below HTML
<ul>
<li></li>
</ul>
<ul> is the parent to <li>

















