$ ( window ). scroll ( function () { var scrolled_val = $ ( document ). scrollTop (). valueOf (); alert ( scrolled_val + ' = ...
Tuesday, 17 November 2015
Wednesday, 3 June 2015
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d468727.7156769247!2d86.23190353981563!3d23.39055853025138!2m3!1f...
Saturday, 18 April 2015
scrolling sidebar in jquery
satish mallick
April 18, 2015
<div id="sidebar"> <ul> <li><a href="#">sidebar</a></li...
Friday, 13 February 2015
Bounce Effect in css3
satish mallick
February 13, 2015
<a id="scrollUp" href="#top" style="position: fixed; z-index: 2147483647;">Top</a> <style>...
Tooltip in css3
satish mallick
February 13, 2015
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> </he...
Wednesday, 11 February 2015
css3 arrow animation using jquery
satish mallick
February 11, 2015
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd...
Monday, 19 January 2015
On hover image Change in jQuery
satish mallick
January 19, 2015
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd...
Wednesday, 14 January 2015
disable mouse right click in jquery
satish mallick
January 14, 2015
<script> jQuery(document).ready(function(e) { $(document).bind("contextmenu",function(e){ return false; ...
How to disable the F12 key
satish mallick
January 14, 2015
<script> document.onkeydown = function(e) { // keycode for F5 function if (e.keyCode === 116) { return false; ...
Embedding extra styles with noscript(Javascript)
satish mallick
January 14, 2015
<script> document.write("<link href='css/css.css' rel='styleSheet' type='text/css' />"); --...
Sunday, 11 January 2015
Count number of word from given string using javascript
satish mallick
January 11, 2015
<script> var str = "satish mallick." ; var wordCount = str . match ( /(\w+)/ g ). length ; alert ( wordCount ); ...
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...