$ ( document ). on ( "click" , ".image-class" , function () { alert ( "I've been clicked" ); })...
Wednesday, 13 December 2017
Saturday, 4 November 2017
click outside div in jquery
satish mallick
November 04, 2017
$(document).ready(function(){ $('.menu ul#main-nav li').on("click", function(e) { //Code here.... }); ...
Thursday, 21 September 2017
Insert HTML And Text Using jQuery
satish mallick
September 21, 2017
<ul> <li><a href="#"></a></li> <li><a href="#"></a>&l...
Tuesday, 23 May 2017
vertically and horizontally center div css
satish mallick
May 23, 2017
<style> .center { height: 200px; position: relative; border: 3px solid green; } .center p { margin: 0; position: ...
Tuesday, 7 March 2017
Simple form design using SCSS
satish mallick
March 07, 2017
<style> /* Sass Document */ @import "_reset"; $font-stack:'Roboto', sans-serif; $reset:0; $center:cen...
Tuesday, 14 February 2017
CSS to set A2 paper size
satish mallick
February 14, 2017
@page { size : A2 ; margin : 0 ; } @media print { html , body { margin : 0 ! important ; padding...
Tuesday, 31 January 2017
On window resize page referesh in jQuery
satish mallick
January 31, 2017
👆👇👈👉👌 $(window).resize(function(e) { location.href = location.href; });
How to add offset to jquery scrolltop ?
satish mallick
January 31, 2017
$("nav#navigation li a [href^='#'] ").click(function(e) { e.preventDefault(); var headerheihgt = $('#header...
Trigger in jquery
satish mallick
January 31, 2017
🙌🙍🙎 <span class="list">trigger</span> <script> $(document).ready(function(e) { $(...
Monday, 30 January 2017
Flexible Box Model to both vertically and horizontally center the text within the circle in css3
satish mallick
January 30, 2017
<div class="box"> <div>Satish</div> </div> <style> .box{ height : 100px ; w...
Wednesday, 25 January 2017
on mouse move image rotate in jquery
satish mallick
January 25, 2017
<div id="rotates" class="column"> <ul class="list"> ...
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...