var x,y,chr; for(x=1; x<=6; x++) { for (y=1; y<x; y++) { chr=chr+("*"); } console.log(chr)...
Thursday, 8 January 2015
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=&quo...
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);&q...
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...
How to make checkboxes to act like radio button using jQuery ?
satish mallick
December 21, 2014
<input type="checkbox" value="Male">satish mallick<br/> <input type="checkbox" value="mal...