Javascript Javascript: Elements resize detection I am sure you have gotten stuck during your web application development but, how many times wondering how to detect when a simple HTML element changes its dimensions? Well, it is not a
Javascript Clean coding (Part 1) Chapter 1: Before starting As Robert Martin explains in his book “Clean Code”, the only valid measurement of code quality is the number of WTFs per minute. If you want to generate a
Javascript HTML: Creating your own video component The Fullscreen Mode Developing an HTML video component means dealing with a cross-platform behavior quite difficult to achieve since the HTML API is incongruous on each browser and its versions. Why creating your
Javascript Javascript: Writing an awesome API Best Practices When creating an API (Application Program Interface) it's crucial to have a clear idea of how you want people to interact with it and how to expose the right functions and parameters. What