shorthand for jQuery(document).ready
By Anatoly Mironov
jQuery(document).ready is used very often, why not use the shorthand variant of that?
$(function() {
// Code here
});
By Anatoly Mironov
jQuery(document).ready is used very often, why not use the shorthand variant of that?
$(function() {
// Code here
});