How to get browser name and version using JavaScript

Hi friends, In this post I am going to explain about how to get the browser name and there version using simple JavaScript function. JavaScript Code 1234567891011function detectBrowser(){     var N= navigator.appName;     var UA= navigator.userAgent;     var temp;     var browserVersion= UA.match(/(opera|chrome|safari|firefox|msie)\/?\s*(\.?\d+(\.\d+)*)/i);     if(browserVersion Read more…

Steps to implement and hosting your website in google app engine for free

Hi, In this post i am going to explain simple steps to implement and hosting your website in google app engine for free. There are many hosting servers hostgator,godaddy … etc. But we have to pay amount them for hosting space.Google is providing a free hosting space with 1 GB daily bandwidth. It will be useful for static html pages. But it is doesn’t support for php,.net … We can implement mobile version of your websites using google appengine with free of cost. I too implemented a small app you can check this.
 

Steps to implement and hosting your website in Google App Engine for free by Anil Kumar Panigrahi

Steps to implement and hosting your website in Google App Engine for free by Anil Kumar Panigrahi

(more…)