Hello, I'm working on a form and I need to do this: http://www.isoluxcorsan.com/es/contacto/
I refer to the checkbox with link, which when clicked open a text paragraph.
Sorry for the name of the topic but I really don't know how to call it better.
Thanks in advance,
Kevin.
I refer to the checkbox with link, which when clicked open a text paragraph.
Sorry for the name of the topic but I really don't know how to call it better.
Thanks in advance,
Kevin.
Hi again,
Maybe the first thing (checkbox with link) isn't possible with chronoforms, but maybe to appear a paragraph when the usser check the checkbox?
Thanks.
Maybe the first thing (checkbox with link) isn't possible with chronoforms, but maybe to appear a paragraph when the usser check the checkbox?
Thanks.
Hi Kevin,
You can do this with JavaScript in a Load JS action. Here's some code I used recently:
Bob
You can do this with JavaScript in a Load JS action. Here's some code I used recently:
window.addEvent('domready', function() {
$('help').addEvent('click', function(){
$('help_text').toggle();
});
});
In this case the trigger was a button with an id='help' and the text was in a div with the id='help_text'Bob
This topic is locked and no more replies can be posted.