HTML Minify v 1.3.2 released!

We added three new options to the web tool and API: – Remove quotes around attributes when possible – Strip HTML comments – Remove all attributes with whitespace-only values Try it now! dotmaui.com/htmlminify api.dotmaui.com/htmlmin  

VultureCSSCore versione 0.2.3 beta released!

VultureCSSCore versione 0.2.3 beta released! We added jStyleParser as a secondary parser to recover CSS files that non-ph-css fails to parser. github.com/DotMaui/VultureCSSCore We have also updated the website and APIs with the new version of…

jQuery – Auto slash(/) in date field

Automatically formating TextBox to dd/MM/yyyy while typing using jQuery Example here: jsfiddle.net/DotMaui/2g6ayjp5/1/ $(“.my-date”).on(“keypress keyup”,function (event) { if (event.key == “/” && $(this).val().length != 2 && $(this).val().length != 5) { event.preventDefault(); } else if ((event.which !=…