Respond in the comments of this issue with:
- What is something you learned that was particularly surprising/interesting?
- Speceific selection ex: $('li').eq(1) to get the second list item without using an #id
- I had no idea that you could chain events, ex: calling a click function AND a key-up function on the same selector
- Expanding on that, you can pass in multiple events in a space seperated string, ex: $('li').on('click keydown', function()...
- What was something you already knew?
- How to target selectors
- Filtering
- Was there anything you feel you still don't understand?
- I haven't put much of this into practice, and using the chrome console to debug isn't comfortable yet.
- It seems like there are a lot of options for AJAX and event listeners, and I struggle when there isn't a set convention.
Feel free to ask any questions about jQuery fundamentals here as well.