Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
A JavaScript That Refreshes A Certain Part Of Page.
Old 04-01-2007, 10:50 AM A JavaScript That Refreshes A Certain Part Of Page.
Average Talker

Posts: 21
Name: Jack
Trades: 0
Is it possible, if anyone knows any free sites that may have this script, it would come in very handy for me. And i would love you forever of course.

Its for a banner exchange. If a visitor goes to my site, i get one impression. Not a lot really.

So what if he stays on the same page for one minute, every 5 or 10 seconds, the banner could refresh, couldnt it, therefore getting me 6 impressions instead of one.

Anyone no of such a script?
FlashPixels is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 04-02-2007, 09:05 PM Re: A JavaScript That Refreshes A Certain Part Of Page.
Junior Talker

Posts: 4
Name: Del
Trades: 0
This might come in handy, it's a banner generator: http://www.htmlbasix.com/banner.shtml

Is this the type of script you have been looking for?
__________________

Please login or register to view this content. Registration is FREE
< Please take a look at this site and let me know what you think ...

Please login or register to view this content. Registration is FREE
< (my little space on the big WWW)
scriptmasterdel is offline
Reply With Quote
View Public Profile
 
Old 04-02-2007, 11:24 PM Re: A JavaScript That Refreshes A Certain Part Of Page.
kids's Avatar
Ultra Talker

Posts: 301
Trades: 0
Quote:
Originally Posted by FlashPixels View Post
Is it possible, if anyone knows any free sites that may have this script, it would come in very handy for me. And i would love you forever of course.

Its for a banner exchange. If a visitor goes to my site, i get one impression. Not a lot really.

So what if he stays on the same page for one minute, every 5 or 10 seconds, the banner could refresh, couldnt it, therefore getting me 6 impressions instead of one.

Anyone no of such a script?
Your idea is the same with me!
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
kids is offline
Reply With Quote
View Public Profile Visit kids's homepage!
 
Old 04-03-2007, 04:47 AM Re: A JavaScript That Refreshes A Certain Part Of Page.
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,522
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
That's a good idea


we'll retitle the thread "How to get banned from an advertising publisher" should we ??

So you don't think that several impressions a few seconds apart from the same IP would raise a red flag.

Or

that most advertisers are stupid enough not to ignore a page refresh when counting banner impressions
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 04-06-2007, 05:23 AM Re: A JavaScript That Refreshes A Certain Part Of Page.
kids's Avatar
Ultra Talker

Posts: 301
Trades: 0
Quote:
Originally Posted by chrishirst View Post
That's a good idea
we'll retitle the thread "How to get banned from an advertising publisher" should we ??
So you don't think that several impressions a few seconds apart from the same IP would raise a red flag.
Or
that most advertisers are stupid enough not to ignore a page refresh when counting banner impressions
I don't think so! I only make a banner rotater. And banner is belong to the difference advertisers. 10s for one banner, do you think about it?
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
kids is offline
Reply With Quote
View Public Profile Visit kids's homepage!
 
Old 04-06-2007, 06:08 AM Re: A JavaScript That Refreshes A Certain Part Of Page.
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,522
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
A banner rotator is not what the OP was looking for.

However the same applies there, even though the ads are from different advertisers.

A page refresh will not (or should not) increase the impression count of any advert. So with a rotator you would get 1 impression from each advert.
If this was not the case, it would be entirely possible for anybody to create a script and leave a browser window open racking up impressions 24 hours a day 7 days a week.
Do you not think there would be safeguards against this happening ????
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 04-10-2007, 02:42 PM Re: A JavaScript That Refreshes A Certain Part Of Page.
JeremyMiller's Avatar
WT Moderator

Posts: 1,712
Name: Jeremy Miller
Location: Las Vegas, NV
Trades: 0
Hope you don't mind if I throw my 2 cents in. I can see legitimate uses for this as well as illegitimate. I remember reading in the news how some electronic billboards in some large cities are now displaying ads for a certain number of seconds before transitioning to the next ad - banner rotation on the billboard scale. Of course, those advertisers are aware of the fact that they're not being displayed constantly which is what makes it acceptable to me.

I'd suggest, also, that seeking impressions is not the key -- don't you want sales? Perhaps someone markets multiple products and wants to have an area which shows all their products over the time that someone spends on a page - reading an article, for example.

I know, I know, there are so many affiliate marketers out there who do some immoral and illegal things, but their actions should reflect on them and their use of the tool or method, not the tool itself.
__________________
Jeremy Miller

Please login or register to view this content. Registration is FREE
JeremyMiller is offline
Reply With Quote
View Public Profile Visit JeremyMiller's homepage!
 
Old 04-10-2007, 08:22 PM Re: A JavaScript That Refreshes A Certain Part Of Page.
t0m
t0m's Avatar
Junior Talker

Posts: 1
Name: Tom
Trades: 0
i needed to do this to reload an authentication session trigger page (to keep a php auth session alive)

i did it by creating an iframe:
HTML Code:
 <iframe id="trigger" src="session_trigger.php"  style="width:0px; height:0px; border: 0px"></iframe>
and reloading it with a javascript like the following:

Code:
 function Reload() {
var f = document.getElementById("trigger");
trigger.contentWindow.location.reload(true);
}
setTimeout("Reload()",180000);
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE
t0m is offline
Reply With Quote
View Public Profile
 
Old 04-12-2007, 09:34 PM Re: A JavaScript That Refreshes A Certain Part Of Page.
Padawan Geek's Avatar
Novice Talker

Posts: 13
Trades: 0
I know code from a book.... would that be illegal to post it?
__________________
function signature() {
document.write("I'm a geek! (duh!)")
}

Padawan Geek is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to A JavaScript That Refreshes A Certain Part Of Page.
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.29962 seconds with 12 queries