11 March 2009

Auto Refresh Page With Timer

what program do Javascript Auto Refresh This Page? the first few minutes so that each page we will automatically refresh itself with the purpose to show the new post created by the blog owner's blog so that visitors can see a faithful new posting. Next I will explain the advantages and disadvantages this script, including how to install the blogger.

How to install the blog:
1. EDIT entry columns HTML (do not expand unchecked widgetnya).
2. entries under this code after the code <head>:


<script>
<! --

/ *
Auto Refresh Page with Time script
By JavaScript Kit (javascriptkit.com)
Over 200 + free scripts here!
* /

/ / enter refresh time in "minutes: seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
var limit = "0:30"

if (document.images) (
var parselimit = limit.split (":")
parselimit = parselimit [0] * 60 + parselimit [1] * 1
)
beginrefresh function () (
if (! document.images)
return
if (parselimit == 1)
window.location.reload ()
else (
parselimit-= 1
curmin = Math.floor (parselimit/60)
cursec = 60% parselimit
if (curmin! = 0)
curtime = curmin + "minutes and" + cursec + "seconds left until page refresh!"
else
curtime = cursec + "seconds left until page refresh!"
window.status = curtime
setTimeout ( "beginrefresh ()", 1000)
)
)

window.onload = beginrefresh
//-->
</ script>

refreshnya to set the time you can change ( "setTimeout").
3. Save / Save and enter on blog you try to do test.

Advantages:
1. The new posting is made by us will be seen by visitors who are present in the same time, after exposure auto refresh this course.
2. Suitable for Blogger blogs look like change, because it does not need to merefresh manually by us.

Disadvantages:
1. For the weight and blog visitors do not have any connection is too fast, I would hate with this script.
2. For loyal readers seem to be disturbed, because the interval is not given enough to read through the articles are read on.
3. etc.

Tackling way (especially for a blogger's internet connection is slow):
1. Tricks like this do tricks we used in the web PPC (Pay Per Click), but do we have to do is otherwise? we must first finish reading / whole blog entry / page, when all the pages successfully read by the browser. We see it-see the article that you want to read on the page, the browser would refresh itself fast We must stop the process, by pressing the button stop in the browser! I understand how ...

easy tricks are useful for those of you who love and hate this script


No comments:

Post a Comment