presentation.css:
body { background-color:yellow; }behavior.js:
var SEARCH = function() {
var $ = {};
return {
init : function() {
SEARCH.doStuff();
},
doStuff : function() {
alert('ding!');
}
};
}();
window.onload = function() {
SEARCH.init();
};prev - http://kentbrewster.com/build-a-search-app/code/code2.html - next