Since start of HTML5 it took the web to next level.Now most of the web development is implemented using HTML5 and css3 . Today i listed some HTML5 tools to reduce the development time. 1) Modernizr.com Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.It will add class on […]
Detect HTML5 Geolocation Support
Geolocation is the art of figuring out where you are in the world and (optionally) sharing that information with people you trust. To check if the user browser support Geolocation you can use any of the following techniques: Technique #1: By using a JavaScript junction. [code lang=”js”] function supports_geolocation() { return !!navigator.geolocation; } [/code] Technique […]