Unobtrusive JavaScript, Layering, and Separation of Concerns.

In this post i am going to explain the notation of Unobtrusive JavaScript, Layering and Separation of Concerns.

It is considered a best practice to separate web pages into three areas of concern: content (HTML), style (CSS), and behavior (JavaScript). It makes these pages better organized, more understandable, and easier-to-maintain.

The term Unobtrusive JavaScript refers to how you use JavaScript on web pages.However, the concept of unobtrusive JavaScript lives on as a way of structuring web pages; this time from the perspective of the developer and how they layer (i.e. separate) their code. The idea is that JavaScript should not be embedded with HTML, but rather there needs to be a separation of behavior (JavaScript) and content (HTML).

In many web pages you see JavaScript assigned to an onclick attribute on a DOM element, like so:

<button onclick="alert('Hello');return false;" >Click me</button>

This works well on pages with just a few JavaScript snippets, but when your application starts to grow and you have hundreds of DOM elements across many pages that require, say, JavaScript client-side validation, then it becomes very difficult to maintain. This is why it is best to separate the JavaScript from the HTML.

The notion of separating web pages in layers has another dimension: styles (using CSS). These three dimensions: behavior, style, and content are frequently referred to as the three layers of web design. Here is a graphic of these layers.

Unobtrusive javascript

Notice in the figure that each layer has its own file type: HTML resides in .html files (or something else depending on the technology used), JavaScript in .js files, and Style Sheets in .css files. This greatly facilitates a clean separation of concerns.

Here is an example of the three layers:

HTML

<div class="area">
   <button id="clicker">Click here</button>
</div>

JavaScript

$(function() {
     $("#clicker").on('click', function() {
         alert("Yep, clicked!");
     });
}

CSS

.area {
   padding:10px;
   background:lightblue;
}

The benefits of organizing your pages in separate layers are numerous:

Increased Reusability. The CSS style sheets and JavaScript code you write for one page is reusable at other pages. Pages that have CSS styles and JavaScript embedded in the HTML will not be reusable for those components.
Easier to Maintain. If you need to correct a mistake or make enhancements it is usually clear where, in which file, to go. If it involves behavior it is a JavaScript file, if it is the look and feel it is a CSS file, or else it is a web page’s HTML itself. Furthermore, if styles and behaviors are reused at multiple pages fixing it for one instance will most likely also fix it for all other instances.
Team development. Web app creation may involve people from different disciplines: developers, designers, information architects, usability experts, etc. With the separation of layers, each can work on their own file type and not interfere with other people’s work.
Better Performance. Once your browser has loaded a CSS or JavaScript file, it will keep it cached between pages. If each page had its styles and scripts embedded in the HTML it would need to re-load this for each new page request.
Improved accessibility. External style sheets and script files are easier ignored if the browser cannot handle these (or is configured not to handle these). This is called progressive enhancement, in which the pages are designed to enhance the user experience as much as possible, but the baseline is still a usable page. The baseline will be HTML with text, images, and controls which every browser supports. Then if CSS is supported (which all do today) then the CSS files are served up. Finally, if JavaScript is not disabled then these files are loaded as well.

local_offerevent_note August 7, 2015

account_box srinivasaraju nadimpalli