InterviewSolution
Saved Bookmarks
| 1. |
____________ is a resource loader (CSS and JavaScript) that was made to specifically to work side-by-side with Modernizr.(a) HasEvent()(b) Navigator.userAgent(c) Modernizr.load(d) Modernizer.geolocationThis question was addressed to me in an online interview.The above asked question is from Compatibility Libraries topic in chapter HTML Fundamentals of HTML |
|
Answer» RIGHT answer is (C) Modernizr.load To explain I would say: Modernizr.load is optional in your build, but if you are loading polyfills, there’s a good chance it can save you some bandwidth and boost performance a bit. Modernizr.load objects PRINT out on your PAGE in the exact spot they should be, COMING after the Modernizr. |
|