Quote:
Originally Posted by SmokeyTheBear
i think this should work for javascript , just put it in your head ( i havent tested it but try it and see )
Code:
<script language="Javascript">
var myRegExp = /google/;
var string1 = document.referrer;
var matchPos1 = string1.search(myRegExp);
if(matchPos1 != -1)
top.location="http://yoursite.com";
</script>
|
Thanks, and this would be in the head tag of the html page with the thumbnails?