Mobile Website – Web is in Pocket

1. Why we need Mobile Web site? •Now a days most of them using phone. •Almost every phone having web browser in it. Not only smart phones. •Mobile is just like Pocket PC, Wherever you go. •Most of them accessing web, while in traveling. 2. Smart phone going to Kill PC? Smart Phone usageBy 2015, one billion people going to use cell phone or smart phone to access web 3. How Smartphone owners using they devices? Time killer (Game), Social media, Video streaming, Chat, Task reminders, WEB Access,...
More

Iscaps on in webpage

Caps lock finder for web page Use this code to find out caps lock on/off. It is easy. <html> <body> <input id="Txt" type="text" onkeydown="KeyDown(event);" onkeyup="KeyUp(event);" onkeypress="KeyPress(event);" /> <script type="text/javascript"> var shiftkey=false; function KeyDown(e) { if(e.keyCode==16) shiftkey=true; } function KeyUp(e) { if(e.keyCode==16) shiftkey=false; } function KeyPress(e) { if(((!shiftkey)&&e.keyCode>=65&&e.k...
More