Home › Forums › Quform WordPress › create label IDs
- This topic has 8 replies, 3 voices, and was last updated 9 years, 7 months ago by
Ally.
- AuthorPosts
- August 21, 2013 at 8:47 pm #5912
curdog
ParticipantI want to be able to change the labels to an alternate language with a button click. But of course to so the labels need an ID. Any way to give the labels a persistent / consistent ID?
Or an alternate solution to changing the labels to another language and back with a button click.August 22, 2013 at 11:26 am #5917Ally
Support StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
- This reply was modified 12 years ago by
Ally. Reason: Added missing dot before iphorm-element-spacer
August 22, 2013 at 5:40 pm #5930curdog
ParticipantAlly,
Thank you.
MikeAugust 25, 2013 at 3:45 am #5992curdog
ParticipantThis works but it stripes out the Child <span>’s in the label.
How do we keep the tool tips after the text change?
$(document).ready(function () {
$("#spanishId").click(function () {
if( $(".iphorm_1_3-element-wrap label").text() == "Nombre del Estudiante")
{$(".iphorm_1_3-element-wrap label").text ("Student First Name");}
else {$(".iphorm_1_3-element-wrap label").text ("Nombre del Estudiante");}
Any help is appreciated…
August 26, 2013 at 1:30 pm #6014Ally
Support StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
January 21, 2016 at 8:58 am #17998Leodore
ParticipantHi I have a similar kind of request but I am not so good at coding.
What I would like to achieve is to have different labels based on a selection from a multi-choice.so if person chooses A then they are responsible for filling in their form and the label would be “what is your name?”
if the person chooses B then they are a parent or legal guardian filling in the form on behalf of their child so the label would say “what is the particpiant’s name?”any help would be greatly appreciated
January 22, 2016 at 5:07 pm #18006Ally
Support StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
January 23, 2016 at 11:30 am #18017Leodore
ParticipantHi Ally,
Thanks very much for your response. Is it possible to change the title of a group element based on a selection from a multiple choice? I tried the following but it doesn’t work. What do I need to change?<script> jQuery(document).ready(function ($) { $('.iphorm_3_1').click(function () { if ($(this).val() == 'Yes') { $("$('.iphorm_3_4-iphorm-group-wrap > .iphorm-group-elements > .iphorm-group-title-description-wrap > .iphorm-group-title').contents().first().replaceWith("Test1"); } else { $("$('.iphorm_3_4-iphorm-group-wrap > .iphorm-group-elements > .iphorm-group-title-description-wrap > .iphorm-group-title').contents().first().replaceWith("Test2"); } }); }); </script>
January 25, 2016 at 10:20 am #18022Ally
Support StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
- This reply was modified 12 years ago by
- AuthorPosts
- You must be logged in to reply to this topic.