Html, JAVA,DOTNET,Javascript, PHP, and JQuery Scripts and its issues with solutions
Saturday, 19 April 2014
Sunday, 13 April 2014
Valu 2014 Tamil Movie Mp3 Songs Free download
Starring: Silambarasan,Hansika Motwani, Santhanam, and others Direction: Vijay Chandar
Music: Thaman.S
Lyricist: Madhan Karky, Silambarasan
Download Tamil Mp3 Songs: Vaalu (2014)
- Engathaan Porantha (12.0 MB)
Singer(s): STR - Hey Vasamoakka – (8.9 MB)
Singer(s): Anirudh Ravichandar, Andrea Jeremiah - Inky Pinky Inky Ponky (10.7 MB)
Singer(s): STR - Love Endravan Nee Yaruda (11.0 MB)
Singer(s): STR - Vaathiyaaru (12.2 MB)
Singer(s): T Rajendar
Friday, 11 April 2014
Input field enter integer only
Here's an example that limits a form field to contain only numeric input (on the fly, of course!).
<script type="text/javascript"> function numbersonly(e){ var unicode=e.charCode? e.charCode : e.keyCode if (unicode!=8){ //if the key isn't the backspace key (which we should allow) if (unicode<48||unicode>57) //if not a number return false //disable key press } } </script> <form> <input type="text" size=18 onkeypress="return numbersonly(event)"> </form>
Subscribe to:
Posts (Atom)