Wednesday, April 9, 2014

Why to create website? Why shoule any company create website?

Some of the reasons why any company should consider building website are elaborated below:

A Business Website Introduces Customers to You

Creating a Website Establishes Trust

Having a Business Website Gets You Listed on Search Engines

Having a Website Provides a Great First Impression

A Business Website is a Connecting Point for Your Business

A Business Website Helps You Leverage Social Networking Sites

Sell Products from Your Website

Use Your Website to Tell Your Story

Announce Upcoming Events and Alert People

Share Pictures and Videos

Share the Latest News

Keep a Blog

Open a Message Board

 

 

 

 

 

 

 

 

 

 

 

Monday, March 31, 2014

How to check if any character is alphabet or not using JavaScript.

Here is the function to do so.

//check if a character is alphabet or not
function isAlpha(aChar)
   {
      myCharCode = aChar.charCodeAt(0);
  
      if(((myCharCode > 64) && (myCharCode <  91)) ||
        ((myCharCode > 96) && (myCharCode < 123)))
      {
         return true;
      }
  
      return false;
   }