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
Or some extra text that makes it clear to the user what he has to do :-). Or a silly arrow or something :P
I'd try posting this on stackoverflow 
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:
$("#isAgeSelected").prop('checked', true);
Do not laugh. @ Caurmen, this one is more suitable for mobile i guess. Thanks for the reply.
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.