<a id="scrollUp" href="#top" style="position: fixed; z-index: 2147483647;">Top</a>  <style>...
Friday, 13 February 2015
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' />");   --...