<script> var str = "satish mallick." ; var wordCount = str . match ( /(\w+)/ g ). length ; alert ( wordCount ); ...
Sunday, 11 January 2015
Thursday, 8 January 2015
Write a JavaScript program to construct the following pattern, using a nested for loop. * * * * * * * * * * * * * * *
satish mallick
January 08, 2015
var x,y,chr; for(x=1; x<=6; x++) { for (y=1; y<x; y++) { chr=chr+("*"); } console.log(chr)...
Saturday, 3 January 2015
On focus Clear input filed value using javascript
satish mallick
January 03, 2015
< input type =" text " onblur =" unblank(this) " onfocus =" blank(this) " value =" Email Addr...
Monday, 29 December 2014
Validate Data using javascript
satish mallick
December 29, 2014
<body onload="on()"> <p>Please input a number between 1 and 10:</p> <input type="text" id=...
Monday, 22 December 2014
Tab based popop in jQuery
satish mallick
December 22, 2014
<div class="tabbing"> <ul class="tab"> <li><a href="javascript:void(0);...
Create typing effect using CSS3 animation
satish mallick
December 22, 2014
<div class="content"> <h1>Typing Effect In Css3</h1> <h2>UI Designer</h2>...
Sunday, 21 December 2014
How to disable any controls using jQuery
satish mallick
December 21, 2014
<input type="button" value="satish" /> <script> $(document).ready(function(e) { $('input:bu...