Is there some way to refactor this jQuery wrapper?

use “jQuery” instead of “$”:

jQuery(document).ready(function(){

    jQuery("#mydiv").addClass('myclass'); //or some function here

});

…as found in the codex page.