Javascript

interesting jQuery alternative – laroux.js

interesting jQuery alternative – laroux.js

If we are talking about jQuery alternatives there is not much on the market. With age jQuery put a little bit on weight, not mentioning it’s speed. If we are talking about weight and speed we have Zepto.js and… we can use pure JavaScript which isn’t especially convenient in larger  projects. But definitely it’s much more but… it’s faster.

Web Dev libraries – week 21

Web Dev libraries – week 21

I’m consuming enormous amount of news each day. These is list of my findings from just only these week. Envision.js is a library for creating fast, dynamic and interactive HTML5 visualisations. Apy is a simple client-side library for making rest api ajax calls. Sitespeed.io is an open source tool that helps you analyse your website speed and performance based on performance best practices and metrics. It collects data from multiple pages on your website, analyze the pages using the rules and output the result as HTML or JUnit XML.

Latest discoveries

Codeception Modern PHP testing for everyone codeception.com FileAPI FileAPI — a set of javascript tools for working with files. Multiupload, drag’n’drop and chunked file upload. Images: crop, resize and auto orientation by EXIF github.com/mailru/FileAPI RainLoop FREE, MODERN & FAST WEB-BASED EMAIL CLIENT rainloop.net ANIMATED CHECKBOXES ANIMATED CHECKBOXES AND RADIO BUTTONS WITH SVG tympanus.net Odometer TRANSITION NUMBERS WITH EASE github.hubspot.com/odometer/docs/welcome/
Serialize form to object – jQuery

Serialize form to object – jQuery

It’s pretty easy to serialise form using jQuery –

$('#formid').serialize();

or by

$('#formid').serializeArray();

But neither of them it’s easy to modify. Really useful snippet – serialise form to object.