HI-TRANSFER

HIGH LEVEL TRANSFER

Tampilkan postingan dengan label browser. Tampilkan semua postingan

Jumat, 02 April 2010

How To Show Date and Time in Title Bar

Tidak ada komentar :
This tutorial will help you to show date and time to visitors who come to your site. Time and date is displayed in their browsers title bars.To add this feature to your site simply follow the steps below.



1.Login to your blogger dashboard and go to Layout --> Page Elements.

2.Click on 'Add a Gadget' on the sidebar.

3.Select 'HTML/Javascript' and add the one of code given below and click save.

<Script Language="JavaScript" Type="Text/JavaScript">

var mytime1=24;
function mytime2() {
mytime3=mytime1+6;
mytime4=mytime1+mytime3;
timexx=mytime1+mytime3+mytime4;
timexxx=timexx/mytime4*mytime1; twelfth=mytime4*mytime1/12*mytime3;
timexxxx=mytime1+mytime3/timexxx-16*timexx;
timexxxxx=twelfth*(mytime1-5)/mytime4+timexx;
timexxxxxx=timexxxxx/timexxxx+mytime1*mytime4-timexx;
mytime5=(timexxxxxx+mytime1/mytime4*timexx+mytime3*timexxx)/twelfth+timexxxxx-timexxxxxx-1;
mytime6=Math.floor(mytime5);
mytime8=mytime6*mytime3/2+100;
mytime7 = window.setTimeout("mytime2()", mytime8);
var mytime9 = new Date();
var mytime10= mytime9.toLocaleString();
document.title = mytime10;}
function op(){mytime2()}
window.onload=op;

</script>

Now you are done.Now refresh your site and look at your browser status bar.

How To Stop Showing Web Page Errors in Internet Explorer

Tidak ada komentar :
If you are using internet explorer you can see that,Internet explorer show web page errors in its status Bar.This is not a good thing for your site.Look at the picture below:



Here I show you how to stop these error messages using JavaScript.

1.Login to your blogger dashboard--> layout- -> Edit HTML

2.Scroll down to where you see </head> tag.

3.Now copy below code and paste it just before </head> tag.

<script>
function stoperrors()
{return true;}
window.onerror=stoperrors;
</script>


4.Now save your template and you are done.

Internet Explorer do not show errors of your website/blogger blog further.

Senin, 21 Desember 2009

How To Save Flash Files of Websites using Mozilla Firefox

Tidak ada komentar :
This article explains how to save flash files from a website using mozilla firefox.

1.Right click on web page and select "view page info" or click on tools and select "page info".

select view page info

2.Now click the Media Tab on the Page Info Window.

select Media Tab

3.The Media Tab will have complete list of Images, CSS Files and Shockwave Flash files of the web page.

4.Scroll down the list and locate your .swf(flash) file.

Locate the swf file

5.Click on "Save As" button. Choose some location on your hard drive and save the file.

you are done.

Kamis, 01 Oktober 2009

How To Remove Bottom Scroll Bar in Blogger

Tidak ada komentar :
Don't you like bottom scroll bar in your blog.Then do the easy steps below.

1.Login to your blogger dashboard--> layout- -> Edit HTML

2.Scroll down to where you see ]]></b:skin> tag .

3.Copy below code and paste it just before the ]]></b:skin> tag .

html {overflow-x: hidden;}


4.Now save your template and you are done.