Mobile app version of vmapp.org
Login or Join
Heady270

: How to know if visitors are reading my long-form articles? I have a website with a couple of long how to's and I would like to know if people are actually reading those articles when they

@Heady270

Posted in: #Analytics #EventTracking #GoogleAnalytics #Tracking

I have a website with a couple of long how to's and I would like to know if people are actually reading those articles when they come in from Google. That is, I'd like to learn whether visitors slowly scroll through, or merely look at the page and navigate away.

From what I understand, Google Analytics, which I currently use, counts "events" and a visitor who only views one page is by default a "bounce." Even if that page answered all their questions and was immensely helpful.

Perhaps I could include markers in the page and measure the amount of time they're in view? Something like that.

It would be also nice to know if the links in the articles are at least occasionally clicked, especially links for internal navigation (#somesection). Is this possible with regular Google Analytics or another off-the-shelf package? Would it require redirecting all the links through some sort of counter like Google does on its SERP?

I do not seek "conversions." I have no goals really. I just want to know if the how to's are worth the effort.
I don't want to split the articles into smaller parts.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Heady270

2 Comments

Sorted by latest first Latest Oldest Best

 

@Shelley277

The solution that has been working for me, is to check for the appearance of a specific DOM element's appearance in view.

For instance, you may have a #comment element after the article content. So check for its appearance in the view since there is no way the user can get to it unless they scroll the page or jump to that section of the page.

You can check for its appearance by firing some isInView(element) function triggered by window.onscroll().

Then, when the element is in view, fire off a GA event (or perform some other function), specifying the end of the article was reached, the article path, and maybe with the time it took to read as expressed by the difference between timeBeganReading & timeCheckElementAppeared... if that sort of information is important to you. For a user skimming the article content, a variable described as timeSpentReading would indicate how long it took to get to the element.

Further, you can stop testing for the DOM element being in view by setting some variable to true once it IS in view, and updating the control block within the isInView(element) function to also test for the true/false value of the variable. Once it evaluates to true, the isInView(element) function will stop firing.

10% popularity Vote Up Vote Down


 

@Gail5422790

This is just a quick answer: You could simply place the content in a div with a height or width (which ever you need) that clips the content at say... 50% of the article height with overflow:hidden; then add a simple button with javascript to animate the height/width property to its full size... or add overflow:scroll; or a few other methods... anyways onto the point:

Google analytics allows for event tracking inclusive of button clicks (or really any click event) so you could see how many people were getting to the 50% mark of your article and clicking the expand button/link.

Here is Google's link on event tracking as well as examples of how to set it up.

Google Event Tracking in Analytics

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme