Home > Questions and Answers > General Questions

How to send the user directly to the CTA button after the "rules"? (12)


12-06-2013 06:32 PM #1 bravenewworld (Member)
How to send the user directly to the CTA button after the "rules"?

Basically, when my 3 "rules" finish loading, I want to direct the user to the CTA button automatically. I've noticed that I'll click on my LP and the CTA button will load below the fold so some users simply not see it, and thus exit. So how can I have the user automatically scroll to the CTA button?


12-07-2013 11:55 AM #2 caurmen (Administrator)

Assign your CTA button an anchor:

Code:
<a name="CTA">CTAHERE</a>
Then use

Code:
<script>location.hash = "#CTA";</script>
when you want the page to scroll down.

Let me know if you have any trouble with that!


12-07-2013 03:56 PM #3 bravenewworld (Member)

Attached a picture. I played around with it a while, but could not figure it out.

Click image for larger version. 

Name:	i.JPG 
Views:	76 
Size:	33.4 KB 
ID:	1672


12-07-2013 04:55 PM #4 stackman (Administrator)

It's a great idea, and it'll increase your CTR. Can't help ya with code though.


12-07-2013 07:04 PM #5 bravenewworld (Member)

Hey stackman, any other tips from your experience that usually always increase LP CTR other than countdown timers, etc.?


12-09-2013 03:20 PM #6 caurmen (Administrator)

When in the user experience do you want the scroll down to happen? Presumably after they've clicked the third button or similar?


12-10-2013 03:50 PM #7 bravenewworld (Member)

Yeah, preferably after the "rules" have been stated. Most times it will stop at the rules, and not go a lil further down to the cta button.


12-11-2013 11:42 AM #8 caurmen (Administrator)

Aha, right: you'll want to fire that code in the same code that reveals your "rules", then. Just paste the "location.hash = "#CTA";" at the end of whichever bit of Javascript reveals your "rules".

Let me know if you can't get it working: I'll probably need to see your lander to figure out what's up, but if you PM me the URL I'll take a look!


12-11-2013 02:11 PM #9 canogat (Member)

Since your page uses jquery, you can add the following line to your js code. Just have to put it in the right place so it happens at the right time.

Code:
$('html, body').animate({ scrollTop: $(document).height() }, 1000);


12-11-2013 02:17 PM #10 bravenewworld (Member)

Click image for larger version. 

Name:	a.JPG 
Views:	54 
Size:	94.3 KB 
ID:	1682


12-12-2013 12:14 PM #11 caurmen (Administrator)

OK, that won't work because it's not firing at the same time as the CTA is being made visible.

I'd need to see the Javascript you're using in order to tell you exactly where to put the line, but it's wherever the code displays the last step of your lander.

I've got a tutorial on questionaire landers coming up tomorrow, so check that - it may help answer your question.


12-12-2013 03:54 PM #12 bravenewworld (Member)

I just pm'ed you.


Home > Questions and Answers > General Questions