Some time ago I needed to create a branch of feature rich WordPress plugins for client’s specific needs. I like AngularJS for its structured and concise nature, decided to use it in these projects. I’ve written a part of client side logic then I realized that I can’t trigger wp_ajax_ hooks via Angular’s $http service as with jQuery ajax methods.
Month: October 2016
Element overflow fixing
Hi! today we’ll discuss one of the cutest solutions for html element overflow problem.
Mistakes in sizing and positioning of containers and elements on a web page results in usually unneeded horizontal scroll bar. And if your markup is complex enough it’s usually takes a lot of time to find elements which caused overflow. Sure you can stay blind to this by adding overflow:hidden; but! you shouldn’t do this anyway. Let’s dive into one cute solution for this…