Is it bad to have multiple $(document).ready(function() {}); on your page? I have a website where I load different things at different times. I fire off those p
$(document).ready(function() {});
No it is fine to have as many as you want. A shorter, much more elegant way to do this is $(function(){}) though.
$(function(){})