In every JQuery tutorial the entry point is always like this:
$(document).ready(function() {
...
});
But in sdoc project it has different entry point as for my novice's view. Here's the code snippet and there the full file:
<script type="text/javascript" charset="utf-8">
//<![CDATA[
function placeholder() {
...
}
$(function() {
placeholder();
...
})
//]]>
</script>
The question: Is $(function()..)
the entry point for jquery script? And if it does why it differ from traditional approach? Thanks
It's the same. From the jQuery documentation for .ready():
All three of the following syntaxes are equivalent:
$(document).ready(handler) $().ready(handler) (this is not recommended) $(handler)
$(function() { ... })
is just short hand for $(document).ready(function() { ... })
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With