/ Published in: JavaScript
Just add this in script tags in your Affiliate Center footer:
-- For more tips and tricks checkout the KickApps resources page.
Expand |
Embed | Plain Text
//make a photo required during signup if (Ka.Info.PAGE == "login/registerUser.jsp"){ $j('#photoPortrait') .attr('required','required') .attr('errorKey','photoRequired'); Ka.formValidation.messages.photoRequired = 'A picture is required.'; }
Comments
Subscribe to comments
You need to login to post a comment.

Thanks! This helped me a LOT - I've added an extra confirmation box to my sign-up form based on this code.