Incoming mail SMS alert in India Free! Tip
Copied from way2sms
IMPORTANT NOTICE, Updated on April 22th, 2010.
“As you may know, we frequently review our products and features to ensure their effectiveness.After reviewing our ‘Way2SMS Mail’ feature, which allows you to ’send and receive emails’, we’ve found that it hasn’t had the impact we had hoped for. As a result, we’ve decided to retire this feature at the end of April.So,We request you to make necessary arrangements before 30th of April...
Read More
Author: Naga Harish M
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...
Read More
HTML5
HTML5
HTML 5 improves interoperability and reduces development costs by making precise rules on how to handle all HTML elements, and how to recover from errors.
Some of the new features in HTML 5 are functions for embedding audio, video, graphics, client-side data storage, and interactive documents. HTML 5 also contains new elements like <nav>, <header>, <footer>, and <figure> .
The HTML 5 working group includes AOL, Apple, Google, IBM, Microsoft, Mozilla, Nokia, Opera, a...
Read More