Use jQuery and jQuery plugins with TypeScript and Webpack

Webpack’s documentation is pretty big, but it still doesn’t provide too many examples, especially for the more complex scenarios. That’s why I created a repository with the maximally reduced code solving the title issue.

Read More +

Hoisting, let and gimmicks

Let’s jump straight into the code.

Read More +

Debugging CSS

When it comes to debugging in web browser developers almost always think of the JavaScript, console.logs and breakpoints. That’s pretty straightforward, unlike trying to figure out what went wrong in a complex layout.

Read More +

A job interview JavaScript task – parsing XML to JSON

Some time ago I was presented with the following task: create in JSON a list of all the 2nd level nodes from an XML input and display the number of children for each such node. It sounds simple but it’s trickier than instantiating the DOMParser and then using JSON.parse (read about them at MDN).

Read More +