the client wants to keep his form in one language but wants to provide tool tips in a different language for non-English speakers , i would like to know if we can put tool tip for item in the field, for e.g. a field Sex with two check box items Male & Female, i want to put a tool tip for both of these items in Arabic language so the person can understand the option pretty well. i can find the way to put a tool tip for the field name i.e. Sex in our eg. but not for the check box items.
Question
Question
Replies
replied on December 24, 2014
you can add a "checkboxcss" css class to the checkbox you want to add tooltips and use following JavaScript to add tooltips:
$(document).ready( function() { var label=$('.checkboxcss .cf-field label'); label[0].title="test"; label[1].title="test2"; label[2].title="test3" });
1
0
You are not allowed to follow up in this post.