GUID Generator released

We have released a new tool to generate all the free GUIDs you need.It supports text format, XML and JSON. You can also generate up to 100000 GUIDs via RESTful API. Try it now! GUID…

Check if a string is an integer in javascript

Small function in pure Javascript to check if a string is an integer or not. function isInteger(value) { var intRegex = /^\d+$/; return intRegex.test(value); } isInteger(5); // true isInteger(undefined); // false isInteger(“1”); // true isInteger(“1.3”);…

Get query string parameters with jQuery

$.urlParam = function (name) { var results = new RegExp(‘[\?&]’ + name + ‘=([^&#]*)’) .exec(window.location.href); if (results == null) { return 0; } return results[1] || 0; } console.log($.urlParam(‘dotmaui’)); //cool

Weekend of working at dotmaui.com

Weekend of working at dotmaui.com, here are the main news:  – HTML Beautifier v 1.4.0 released, we have completely replaced the script for a better result– HTML Minify API version 1.1 has left beta status…