Quote:
Originally Posted by HomerSimpson
1. do nothing (it acutally converts on some of my blogs but not at all)
2. redirect it
3. kill frame (so user can't go back to google and he stays on your site with code below)
Code:
<script type="text/javascript">
setTimeout('brakef()', 1500);
function brakef() {
if (window.top!=window.self) {
window.top.location=self.location;
}
}
</script>
the timeout settings is set to 1500 and thats 1,5 seconds (it's in milliseconds so 1000 is = 1s)
|
While that is not really a bad idea, its not the best one either. If you plan to kill the frame, give them more time. Pissing off a surfer is not worth the wast of the bandwidth. If they click an image its because they are interested in something IN THAT image., If they do not find that image on your site they will most likely want to back out.