<div id="rotates" class="column"> <ul class="list"> ...
Wednesday, 25 January 2017
custom zoom effect using jquery (without js zoom plugins).
satish mallick
January 25, 2017
<div class="wrapper"> <div class="zoom_area column"> ...
Tuesday, 24 January 2017
circular class rotaion in jquery
satish mallick
January 24, 2017
See the Pen circular class rotaion in jquery by satish mallick ( @satishmallick ) <div class="wrapper"> ...
Wednesday, 11 January 2017
http://javascript-html-5.blogspot.com/2017/01/disable-right-click-copy-paste-from-web.html < script type = "text/j...
Sunday, 25 December 2016
Need to call a function in every 3 second with time duration reset ?
satish mallick
December 25, 2016
<script> var interval = setInterval(Tinterval, 5000); $('body').on('click', function() { ...
How to close div clicking outside of it ?
satish mallick
December 25, 2016
<body> <div id="text">Hello</div> </body> <script> $(document).on('m...
Friday, 16 December 2016
How to disable trigger click after first click
satish mallick
December 16, 2016
NOTE: Multiple clicks on <a> tag, trigger fires only one time. <a class="active">One</a>...