Google Translator

Posted on Thursday, 6 December 2012 by contact-nizam

Create Online DataBase Schema

Posted on Monday, 3 December 2012 by contact-nizam

Visit the below link:


http://www.dbschemaeditor.com/OnlineDB.aspx

Have Fun.....

JQuery Contact form POP-UP

Posted on Tuesday, 27 November 2012 by contact-nizam

Google link submission and Google SEO setup

Posted on by contact-nizam



www.google.com/webmasters/tools/

SiteMap Generator

Posted on Monday, 26 November 2012 by contact-nizam

Visit this below link to generate sitemap of any website:

http://netzspot.blogspot.in/p/sitemap-generator.html

Have fun.

Stylish LightBox POP-UP Facebook Like Box Widget For Blog & Website

Posted on by contact-nizam


How to Add In Website?
1). Just Go To Your HTML File.
2). Now Copy The Below Code And Paste It Between <body></body>.
3). Save It, Now You Are Done.

Customization:
1). Change Red Text According To Your Desire.
2). Change Blue Text With Your Facebook FanPage URL.
3). Save And Done.


<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js'></script>
<script src="https://gj37765.googlecode.com/svn/trunk/html/[www.gj37765.blogspot.com]jquery.colorbox-min.js"></script>
<link rel="stylesheet" href="https://gj37765.googlecode.com/svn/trunk/html/%5Bwww.gj37765.blogspot.com%5Dfbpopup.css" type="text/css" />
<script type="text/javascript">
jQuery(document).ready(function(){
if (document.cookie.indexOf('visited=flase') == -1) {
var fifteenDays = 1000*60*60*24*30;
var expires = new Date((new Date()).valueOf() + fifteenDays);
document.cookie = "visited=true;expires=" + expires.toUTCString();
$.colorbox({width:"400px", inline:true, href:"#mdfb"});
}
});
</script>
<div style='display:none'>
<div id='mdfb' style='position:fixed; z-index:99999999; padding:10px; background:#fff;'>
<h3 class="mdbox-title">Receive all updates via Facebook. Just Click the Like Button Below<center><p style="line-height:3px;" >▼</p></center></h3>
<center>
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fboredbees&amp;width=300&amp;colorscheme=light&amp;show_faces=true&amp;border_color=%23ffffff&amp;stream=false&amp;header=false&amp;height=258" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:258px;" allowtransparency="true"></iframe>
</center><p style=" float:right; margin-right:35px; font-size:9px;" >Powered By <a style=" font-size:9px; color:#3B78CD; text-decoration:none;" href="http://www.exeideas.com">EXEIdeas</a></p>
</div></div>

References:
Click here to visit

Insert current date and time in website

Posted on Saturday, 24 November 2012 by contact-nizam


Step One
Paste the following JavaScript code into the <HEAD> of your Web page:
 <SCRIPT language="javascript">

<!-- hide javascript

function StartClock12() {
   Time12 = new Date();
   Cur12Hour = Time12.getHours();
   Cur12Mins = Time12.getMinutes();
   Cur12Secs = Time12.getSeconds();
   The12Time = (Cur12Hour > 12) ? Cur12Hour - 12 : Cur12Hour;
   The12Time += ((Cur12Mins < 10) ? ':0' : ':') + Cur12Mins;
   The12Time += ((Cur12Secs < 10) ? ':0' : ':') + Cur12Secs;
   The12Time += (Cur12Hour > 12) ? ' PM': ' AM';
   document.CForm.Clock12.value = The12Time;
   window.status = The12Time;
   setTimeout('StartClock12()',1000);
   }
function StartDate() {
   TDay = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
   TMonth = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
   TDate = new Date();
   CurYear = TDate.getYear();
   CurMonth = TDate.getMonth();
   CurDayOw = TDate.getDay();
   CurDay= TDate.getDate();
   TheDate = TDay[CurDayOw] + ', ';
   TheDate += TMonth[CurMonth] + ' ';
   TheDate += CurDay + ', ';
   TheDate += ((CurYear%1900)+1900);
   document.CForm.CDate.value = TheDate;
   }
// done hiding -->
</SCRIPT>
Step Two
Add the onLoad event handler to the page's <BODY> tag:
 <BODY onLoad="StartClock12();StartDate()";>
Step Three
Then paste the code below into the <BODY> section (add layout and decoration as you see fit):
 <FORM name="CForm">
<INPUT type="text" name="Clock12" size="12">
<INPUT type="text" name="CDate" size="29">
</FORM>
That's it.