I should have named my question "Jquery initialization function" which includes Jquery methods and variables. Is it efficient to use following examples? Or should I use all methods in one Jquery initialization function ?
<script>
/* 1 */
$(function() {
//methods
});
</script>
<script>
/* 2 */
$(function() {
//methods
});
</script>