InterviewSolution
Saved Bookmarks
| 1. |
What is the meaning of Unobtrusive JavaScript? Explain us by any practical example. |
|
Answer» This is a general term that conveys a general philosophy, similar to the term REST (Representational State Transfer). Unobtrusive JavaScript doesn't inter mix JavaScript code in your page markup.Eg : Instead of using events like onclick and onsubmit, the unobtrusive JavaScript attaches to elements by their ID or class based on the HTML5 data- attributes. |
|