I'm working on a hobby app and using some jQuery. The results are fine at the moment, but I'm a jQuery noob and I assume that there are some significant improvements that I can make to the code structure. Putting aside Coffescript for the moment, one thing that I've been wondering is how to properly use the model-specific .js files in the asset pipeline.
For example, when working with my User model, I may have some code that I want to have run when the document is ready. Let's say I put that in $(document).ready(function() {...}); in the users.js file generated by Rails 3.1.
The next day, I'm working with the Pet model and I have code that I want to run with the document is ready. I put that in another $(document).ready(function() {...}); inside of the pets.js file that Rails prepares.
Here's where my questions arise:
- How does that compile when the app runs?
- Am I instantiating two jQuery instances with the example above?
- Should I only use
$(document).ready(function() {...});once in the app or does Rails compile my code into a single call? - What belongs in the model-specific
.jsfiles? - Are there differences between how it will execute in development and production modes?