View Single Post
Old 10-20-2019, 10:29 AM  
AmateurFlix
Confirmed User
 
Industry Role:
Join Date: Jul 2004
Posts: 7,738
Quote:
Originally Posted by thommy View Post
for me this looks now like software dedected.

in the past they have been sending videos and screenshots where you could see what EXACTLY is meant. but a few weeks ago they stopped it.

it is much harder now to find out what is meant and what one could do against it.

right now I see complaints on "invisible click areas" that do not even execute a pop.

I have to investigate this issue a bit deeper - I am not 100% sure what is going on here right now and this makes me crazy.
It is possible that my site was penalized for "invisible click areas" because I use code like below to wrap a video feed on my pages. I just noticed that it is allowing clicks on the full width of the page, even in whitespace outside of the video feed:

Code:
<script type='text/javascript' src='//code.jquery.com/jquery-1.9.1.js'></script>
<style type='text/css'>
.my_container{position:relative;}
.my_overlay{top:0;left:0;width:99%;height:100%;position:absolute;cursor:pointer;}
</style>
<script type='text/javascript'>
$(window).load(function(){
$('.my_overlay').click(function(){window.open('http://mydomain.com/');})
});
</script>
<div class='my_container'>
	<iframe src='blah' height=528 width=850 style='border: none;'></iframe>
	<div class='my_overlay'></div>
</div>
Software detection would definitely pick up on that, humans would be unlikely to try clicking on it due to the location being near the bottom of the page and isolated horizontally.
AmateurFlix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote