I have a good lesson learned today, and here to share with anyone interested in:
Requirement:
I have a form, there is a terms&condition checkbox field there, which label is "I Agree to terms&condition" . i want to have terms&condition linked to my company's privacy. How make it?
Solution:
Add a custom html snippet on the landing page, copy&pased the following JS code, changed accordingly.
<script type="text/javascript">
var $jQ = jQuery.noConflict();
$jQ(document).ready(function(){
// hyperlink the terms&condition field label
var chBox = $jQ("#ChkboxFieldName").parent().parent();
var plcLabel = chBox.children(":first");
plcLabel.html("I agree to the <a href='http://www.pactera.com/privacy/' style='text-decoration:none;color:#de0000' >terms&condition</a>.");
});
</script>
Thanks,