Home > Paid Traffic Sources > Mobile

User friendly 'Check Box' on my mobile offer page. (6)


02-16-2015 12:55 PM #1 Chunk (Member)
User friendly 'Check Box' on my mobile offer page.

Hi guys,

I need an User Friendly 'Check Box' (for the terms and conditions), on my mobile responsive offer page. I will programme it myself.

Does anyone has a good example?

Thanks


02-16-2015 12:58 PM #2 Chunk (Member)

Or some extra text that makes it clear to the user what he has to do :-). Or a silly arrow or something :P


02-17-2015 02:47 PM #3 vaalion (Member)

I'd try posting this on stackoverflow


02-17-2015 07:44 PM #4 caurmen (Administrator)

Does the check box actually have to be ticked for the user to proceed?

If it's just there to be a ticky box, then http://www.w3schools.com/tags/tryit...._input_checked should do it.

If you need to check it before proceeding, then you'll need an onclick event on the button which does a quick check on the box:

Code:
$("#isAgeSelected").prop('checked', true);
and then does whatever you want it to do.


02-18-2015 08:37 AM #5 Chunk (Member)

Do not laugh. @ Caurmen, this one is more suitable for mobile i guess. Thanks for the reply.


02-18-2015 10:20 AM #6 caurmen (Administrator)

Ah, shit, missed that it was mobile. In that case you'll want to have that code at the foot of the page and load jQuery (the library it uses) after the page has loaded.


Home > Paid Traffic Sources > Mobile