Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Why is the function still valid without ready on example 7:31 (the scripts are not moved to the bottom yet)?

On the Jquery playlist when the instructor is showing valid ways to write jquery, it confuses me why the function still works at 7:31:

Previous function (with scripts on top in HTML...this makes sense) $(document).ready(function(){ $(“.warning”).hide().show(“slow”); });

Next function (with scripts on top in HTML....this doesn't make sense) $(function(){ $(“.warning”).hide().show(“slow”); });

Why does the "next function" still run despite the DOM not being "ready"?

Thanks!

2 Answers

Steven Parker
Steven Parker
229,644 Points

:point_right: Both of those functions run after the document is ready.

// in JQuery,
$(function(){})                   // <-- this is an abbrevation
$(document).ready(function(){});  // <-- for this

Oh OK, thanks for the explanation.