1
Reply

What is unobtrusive JavaScript ?

Mohseen Jamal

Mohseen Jamal

Oct 10, 2014
831
0

    Unobtrusive JavaScript, is a JavaScript that is separated from the web site's html markup. There are several benefits of using Unobtrusive JavaScript. Separation of concerns i.e the HTML markup is now clean without any traces of javascript. Page load time is better. It is also easy to update the code as all the Javascript logic is present in a separate file. We also get, better cache support, as all our JavaScript is now present in a separate file, it can be cached and accessed much faster.

    Adit Pattanayak
    October 30, 2014
    1