When I try to use $(\"#div_id\") in $(document).ready it returns NULL, but when I use jQuery(\"#div_id\") it returns the actual object
$(\"#div_id\")
$(document).ready
jQuery(\"#div_id\")
Maybe you have another library that uses $?