jQuery and "Organized Code" - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T22:48:43Zhttp://stackoverflow.com/feeds/question/251814http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/251814/jquery-and-organized-code12jQuery and "Organized Code"HBoss2008-10-30T21:17:34Z2009-07-04T19:18:23Z
<p>I've been struggling lately with understanding the best way to organize jQuery code. I asked another question earlier and I don't think I was specific enough (<a href="http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess">found in this question here</a>).</p>
<p>My problem is that the richer you make an application, the quicker your client side gets out of control. Consider this situation...</p>
<pre><code>//Let's start some jQuery
$(function() {
var container = $("#inputContainer");
//Okay let's list text fields that can be updated
for(var i=0; i < 5; i++) {
//okay let's add an event for when a field changes
$("<input/>").change(function() {
//okay something changed, let's update the server
$.ajax({
success:function(data) {
//Okay - no problem from the server... let's update
//the bindings on our input fields
$.each(container.children(), function(j,w) {
//YIKES!! We're deep in here now!!
$(w).unbind().change(function() {
//Then insanity starts...
}); // end some function
}); //end some loop
} // what was this again?
}); //ending something... not sure anymore
}).appendTo(container); //input added to the page... logic WAY split apart
}; //the first loop - whew! almost out!
}); //The start of the code!!
</code></pre>
<p>Now this situation isn't too far from impossible. I'm not saying this is the right way to do it, but it's not uncommon to find yourself several levels down into a jQuery command and starting to wonder how much more logic can add before the screen begins to melt.</p>
<p><strong>My question is how are people managing this or organizing to limit the complexity of their code?</strong></p>
<p><em><a href="http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess#247382">I listed how I'm doing it in my other post</a>...</em></p>
http://stackoverflow.com/questions/251814/jquery-and-organized-code/251848#2518480Answer by Josh for jQuery and "Organized Code"Josh2008-10-30T21:30:05Z2008-10-30T21:30:05Z<p>Stick some of the anon functions into global scope functions (or your own "namespace" object), especially the re-used functions, and it begins to look less like what you posted. Kind of like what you linked to.</p>
http://stackoverflow.com/questions/251814/jquery-and-organized-code/251854#2518543Answer by Peter Bailey for jQuery and "Organized Code"Peter Bailey2008-10-30T21:32:10Z2008-10-30T21:32:10Z<p>Well, for one, having a good IDE that understands javascript can help tremendously, even if just to identify matching demarcations (braces, parens, etc).</p>
<p>If your code starts to really get that complex, consider making your own static object to organize the mess - you don't have to work so hard to keep everything anonymous.</p>
<pre><code>var aCustomObject = {
container: $("#inputContainer"),
initialize: function()
{
for(var i=0; i < 5; i++)
{
$("<input/>").changed( aCustomObject.changeHandler );
}
},
changeHandler: function( event )
{
$.ajax( {success: aCustomObject.ajaxSuccessHandler} );
},
ajaxSuccessHandler: function( data )
{
$.each( aCustomObject.container.children(), aCustomObject.updateBindings )
},
updateBindings: function( j, w )
{
$(w).unbind().changed( function(){} );
}
}
aCustomObject.initialize();
</code></pre>
http://stackoverflow.com/questions/251814/jquery-and-organized-code/251864#25186412Answer by David Alpert for jQuery and "Organized Code"David Alpert2008-10-30T21:37:48Z2008-10-30T21:37:48Z<p>So far, I do it like this:</p>
<pre><code>// initial description of this code block
$(function() {
var container = $("#inputContainer");
for(var i=0; i < 5; i++) {
$("<input/>").changed(inputChanged).appendTo(container);
};
function inputChanged() {
$.ajax({
success: inputChanged_onSuccess
});
}
function inputChanged_onSuccess(data) {
$.each(container.children(), function(j,w) {
$(w).unbind().changed(function() {
//replace the insanity with another refactored function
});
});
}
});
</code></pre>
<p>In JavaScript, functions are first-class objects and can thus be used as variables.</p>
http://stackoverflow.com/questions/251814/jquery-and-organized-code/252060#2520602Answer by stuartloxton for jQuery and "Organized Code"stuartloxton2008-10-30T22:59:24Z2008-10-30T22:59:24Z<p>In my opinion the method described by BaileyP is what I use to start off with then I normally abstract everything into more re-usable chunks, especially when some functionality expands to the point where it's easier to abstract it into a plugin then have it specific to one site.</p>
<p>As long as you keep the large blocks of code in a seperate file and coded nicely you can then end up with some really clean syntax.</p>
<pre><code>// Page specific code
jQuery(function() {
for(var i = 0; i < 5; i++) {
$("<input/>").bindWithServer("#inputContainer");
}
});
// Nicely abstracted code
jQuery.fn.bindWithServer = function(container) {
this.change(function() {
jQuery.ajax({
url: 'http://example.com/',
success: function() { jQuery(container).unbindChildren(); }
});
});
}
jQuery.fn.unbindChildren = function() {
this.children().each(function() {
jQuery(this).unbind().change(function() {});
});
}
</code></pre>
http://stackoverflow.com/questions/251814/jquery-and-organized-code/255222#25522213Answer by John Resig for jQuery and "Organized Code"John Resig2008-10-31T23:08:22Z2008-11-05T03:56:18Z<p>Just want to add to what was mentioned previously that this:</p>
<pre><code>$.each(container.children(), function(j,w) {
$(w).unbind().change(function() { ... });
});
</code></pre>
<p>can be optimized to:</p>
<pre><code>container.children().unbind().change(function() { ... });
</code></pre>
<p>It's all about chaining, a great way to simplify your code.</p>
http://stackoverflow.com/questions/251814/jquery-and-organized-code/285309#2853090Answer by Jason Moore for jQuery and "Organized Code"Jason Moore2008-11-12T20:48:01Z2008-11-12T20:48:01Z<p>I described my approach <a href="http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess#284700">in your other post</a>. Short form:</p>
<ul>
<li>do not mix javascript and HTML</li>
<li>use classes (basically start to see your application as a collection of widgets)</li>
<li>only have a single $(document).ready(...) block</li>
<li>send jQuery instances into your classes (instead of using plugins)</li>
</ul>