What is Unobtrusive JavaScript?

Unobtrusive JavaScript embodies a methodology wherein the JavaScript language is skillfully partitioned between Document Content and Script Content. This distinction serves to delineate these elements clearly and effectively. Just as we adhere to the practice of segregating structural and presentational aspects through the segregation of CSS into a distinct file and the avoidance of inline style attributes, a similar separation is recommended between HTML structure and JavaScript behavior. The rationale underlying this principle remains consistent: it compartmentalizes concerns, develops code hygiene, and facilitates the manipulation of JavaScript code independently of both HTML and CSS. In essence, it entails the isolation of JavaScript behavior from HTML presentation. This paradigm bears numerous advantages, imbuing our code with enhanced reliability, facilitating updates, and streamlining debugging processes.

The fundamental principle of unobtrusive programming entails utilizing JavaScript as an augmentative element for our web pages rather than an obligatory component. This approach advocates for the selective use of JavaScript based on necessity; if JavaScript is unnecessary, static content functions seamlessly with pure HTML and CSS. Unfortunately, numerous developers prematurely integrate code libraries without assessing their actual requirements. Notably, jQuery has often been overused, overshadowing the potential of achieving fundamental objectives through CSS and native JavaScript. Unobtrusive JavaScript introduces a paradigm shift, counteracting the conventional notion of exclusively JavaScript-driven dynamic web pages. Instead, it encourages a reversal: prioritize 100% standard, static web pages and subsequently introduce an additional stratum of JavaScript, almost as an afterthought, for supplementary enhancement.

example
<input type="button" id="btn" onclick="alert('Test')" />

That is not unobstrusive javascript because behaviour and presentation are mixed. The onclick shouldn't be there in html and should be part of javascript itself not html.

With above example, you can go unobstrusive like this:

<input type="button" id="btn" />
JavaScript:
var el = document.getElementById('btn'); el.onclick = function(){ alert('Test'); };

Conclusion

Unobtrusive JavaScript is a development philosophy that advocates using JavaScript to enhance web pages rather than making it a mandatory requirement. It encourages selectively applying JavaScript where needed, allowing static content to function effectively with HTML and CSS alone. This approach promotes cleaner, more accessible code and avoids overreliance on JavaScript libraries, aligning with a paradigm that prioritizes degradation.