Category Archives: Web Development

Equalize Heights

Quick code to Equalize Heights of container elements using jQuery. Iterating through each container element specified, compare the height of the container with the value stored in _maxh variable and after the iteration, we apply the new found height to all the container elements.

Read more

Smooth Animations in Cordova Hybrid App

While working with Cordova Apps, found that the jQuery Animation effects were not smooth. While googling and searching for solution on StackOverflow I found many answers. But one answer on a Chrissilich’s website(link below) worked amazingly for me. So the solution was to add this particular CSS code to the element to be animated. -webkit-transform: translateZ(0);

Read more