scale on jquery . hide (div)
by Shree Khanal
HTML
<div id="mydiv">🏴</div>
CSS
#mydiv { width:100px; height:100px; background-color:blue; }
JavaScript
$('#mydiv').click(function() {
$(this).hide('scale',{ percent: 0 },1000);
})
by Shree Khanal
<div id="mydiv">🏴</div>
#mydiv { width:100px; height:100px; background-color:blue; }
$('#mydiv').click(function() {
$(this).hide('scale',{ percent: 0 },1000);
})