Windows 8 was launched months ago and is getting a bleak response from customers.As per the latest report windows 8 adoption rate is lesser than vista and constituting 1.77% .Windows 8 Metro UI is new to PCs but the lack of start button made some of the users disappointed and holding back from upgrading

Read More...

Flash contents are not supported in apple devices for long time but still the flash based websites and games are still more in number.There were several workarounds for the apple users to access flash content on ipad/iphone. I am going to show browser application that allows to access the flash websites without installing any plugins or flash players

Read More...

HTML5 Geolocation api allows us to get the current location using a simple JavaScript function. On the modern browsers the location information can be retrieved using the Navigator object. HTML5 Geolocation API Navigator.geolocation() This function simply queries the browser about the location from which the webpage is getting loaded.The browser which uses the location provider (in our case Google maps) to get the location information using the public IP address,MAC,Wifi information which is sent by the browser itself. As accessing the physical location impacts user privacy the above function will not work when the user denies the permission for it. Geolocation is not supported only in modern browsers with HTML5 capabilities. To ensure this first we have to check the geolocation support. 12345678if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(onsuccess,onfailure); } [&hellip

Read More...