Today’s technological advancement in the world has tremendous security issues, the biggest concern about the web security is user’s data. Chrome indicates HTTP & HTTPS connection of the website with an icon in the address bar. HTTP doesn’t mean that the website is not secure but it means that someone can look at or modify the […]
Add the below script tag in your head tag <script src=”https://github.com/bas2k/jquery.appear/blob/master/jquery.appear.js”></script> Animate from top HTML<div class=”top”> content goes here… </div> CSS<style> .top { top: -50px; padding-right: 0px; opacity: 0; position: relative; } </style> JQuery<script> $(‘.top’).each(function() { $(this).appear(function() { $(this).delay(150).animate({ opacity : 1, top : “0px” }, 1000); }); }); </script> Animate from bottom HTML<div class=”bottom”> […]
Google <meta name=”description” content=”” /> <meta name=”keywords” content=”” /> <meta name=”author” content=”” /> <meta name=”copyright” content=”” /> <meta name=”application-name” content=”” /> Facebook <meta property=”og:title” content=”” /> <meta property=”og:type” content=”article” /> <meta property=”og:image” content=”” /> <meta property=”og:url” content=”” /> <meta property=”og:description” content=”” /> Twitter <meta name=”twitter:card” content=”summary” /> <meta name=”twitter:title” content=”” /> <meta name=”twitter:description” content=”” /> […]
HTML <html> <head> <title>convert Number to word</title> </head> <body> <input type=”text” name=”rupees” id=”rupees” /> <input type=”button” name=”sr1″ value=”Click Here” onClick=”Convert()”/> <div id=”wordValue”></div> </body> </html> Javascript <script> function Convert() { var rVal=document.getElementById(‘rupees’).value; rVal=Math.floor(rVal); var rup=new String(rVal); rupRev=rup.split(“”); actualNumber=rupRev.reverse(); if(Number(rVal) >=0){ } else{ alert(‘Number cannot be converted’); return false; } if(Number(rVal)==0){ document.getElementById(‘wordValue’).innerHTML=rup+”+’Rupees Zero Only’; return false; } […]
Facebook <a id=”ref_fb” href=”http://www.facebook.com/sharer.php?s=100&p[title]=<title-goes-here>&p[summary]=<summary-goes-here>&p[url]=<url-goes-here>& p[images][0]=<image-url-goes-here>” onclick=”javascript:window.open(this.href, ”, ‘menubar=no,toolbar=no,resizable=no,scrollbars=no,height=400,width=600’); return false;”> <img src=”add-your-share-button-image-here” alt=””/> </a> Note: URL need to be encoded when passed in the query string. Twitter <a id=”ref_tw” href=”http://twitter.com/home?status=<status-goes-here>+<url-goes-here>” onclick=”javascript:window.open(this.href, ”, ‘menubar=no,toolbar=no,resizable=no,scrollbars=no,height=400,width=600’);return false;”> <img src=”add-your-share-button-image-here” alt=””/> </a> Note: URL need to be encoded when passed in the query string. Google Plus <a id=”ref_gp” href=”https://plus.google.com/share?url=<url-goes-here>” […]