Ex. I have site with posts. When someone view some post, the post views counts +1. What i want... is it possible to count the post views +1 only when the visitros view that post for 10 or more seconds? if its possible, how can i do that? Sorry for my bad english.
I think it can be done by using programming languages. Eg: PHP But what's the web site configuration? Is it a forum or blog?
You can use javascript setTimeout() function to count the time. After completing the specified time, call the page again and update the counter. Thats all
You can do that using AJAX, setting a timeout when the page is loaded to 10 seconds and then call ajax to add another view to the page.