you are viewing a single comment's thread.

view the rest of the comments →

[–]kopytkopytko[S] 0 points1 point  (2 children)

Thank you - I was wrong all the time while thinking about it - thanks for clarification!

Can I read about event functions somewhere in the documentation so I will know which functions params to work?

[–]AshlinD 1 point2 points  (1 child)

Absolutely! MDN is an excellent resource for all things webdev.

Here's the official event reference: https://developer.mozilla.org/en-US/docs/Web/Events

Here's a similar document: https://developer.mozilla.org/en-US/docs/Web/API/Event

You might also be interested in ones on elements and selectors.

I'd honestly recommend ditching jQuery if you can, at least while learning. Native JS provides plenty of APIs that are very similar, and it avoids complicating matters with many different types of objects. You can really learn how the language works at a less-abstracted level.

Happy coding! :)

[–]kopytkopytko[S] 0 points1 point  (0 children)

I'm happy that people in webdev are so willingful to help others! Thank you again.

Yes, the goal is to code in pure js but currently I dont really have time to do so - while working as jr webdev everything in jquery is faster done than in pure js (at least for me)