1: $(document).ready(function() {
2: $('#notready').fadeOut(1000);
3: });
1. $() says, "hey, jQuery things are about to happen!"
2. .ready(); is a function in jQuery. It says "hey, I'm going to do stuff as soon as the HTML document is ready!"
No comments:
Post a Comment