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
Naga Harish
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
Free Rich-Text Editors
Free Rich-Text Editors
TinyMCE
TinyMCE is an open source (under the GNU Lesser General Public License) rich-text editor released and maintained by Moxiecode. As indicated by the name, TinyMCE is lightweight but highly customizable through an intuitive API. TinyMCE’s plugin system allows you to download themes and plugins to extend the core installation.
TinyMCE Demo Download
FCK Editor
FCKeditor is another wildly popular open source online rich-text editor (check out some of the websites...
Read More