1
vote
structuring large web application for multiple developers
Factor out pieces of your target page markup into server-side includes or other composable pieces, each one wrapped in a DIV (or other appropriate tag) with a unique ID, then add separate CSS and J …
0
votes
jQuery won’t parse my JSON from AJAX query
If returning an array works and returning a single object doesn't, you might also try returning your single object as an array containing that single object:
[ { title: "One", key: …
12
votes
jQuery and “Organized Code”
So far, I do it like this:
// initial description of this code block
$(function() {
var container = $("#inputContainer");
for(var i=0; i < 5; i++) {
$("& …
