.ready()

2012. 8. 6. 18:05Front/Jquery

반응형

Description: Specify a function to execute when the DOM is fully loaded

While JavaScript provides the load event for executing code when a page is rendered, this event does not get triggered until all assets such as images have been completely received. In most cases, the script can be run as soon as the DOM hierarchy has been fully constructed. The handler passed to .ready() is guaranteed to be executed after the DOM is ready, so this is usually the best place to attach all other event handlers and run other jQuery code. When using scripts that rely on the value of CSS style properties, it's important to reference external stylesheets or embed style elements before referencing the scripts.   In cases where code relies on loaded assets (for example, if the dimensions of an image are required), the code should be placed in a handler for the load event instead.   The .ready() method is generally incompatible with the attribute. If load must be used, either do not use .ready() or use jQuery's .load() method to attach load event handlers to the window or to more specific items, like images.   All three of the following syntaxes are equivalent:  •$(document).ready(handler) • $().ready(handler) (this is not recommended) •$(handler)   There is also $(document).bind("ready", handler), deprecated as of jQuery 1.8. This behaves similarly to the ready method but if the ready event has already fired and you try to .bind("ready") the bound handler will not be executed. Ready handlers bound this way are executed after any bound by the other three methods above.   The .ready() method can only be called on a jQuery object matching the current document, so the selector can be omitted.   The .ready() method is typically used with an anonymous function:  $(document).ready(function() {   // Handler for .ready() called. });  Which is equivalent to calling:  $(function() {  // Handler for .ready() called. });  If .ready() is called after the DOM has been initialized, the new handler passed in will be executed immediately.

Not loaded yet.



반응형

'Front > Jquery' 카테고리의 다른 글

.attr()  (0) 2012.08.06
.draggable()  (0) 2012.08.06