Hi,
I'm using Joomla 2.5 and Chronoforms.
I have created a form where users insert some fields and select some options from a Select dropdown.
My problem is that I would send a mail with option text selected in the dropdown but chronoforms send to me the value of the option.
How can I send by email the text of my option?
I tried this code:
where select_1 is my select and desc_select1 is a text field hidden.
But dosen't works. why?
Regards
monak83
I'm using Joomla 2.5 and Chronoforms.
I have created a form where users insert some fields and select some options from a Select dropdown.
My problem is that I would send a mail with option text selected in the dropdown but chronoforms send to me the value of the option.
How can I send by email the text of my option?
I tried this code:
window.addEvent('domready', function(){
$('select_1').addEvent('change', function(){
this.getChildren().each(function(o){
if (o.selected == true) {
$('desc_select1').value = o.getText();
var test=form.elemetns['desc_select1'].value;
alert(test)
}
});
});
});
where select_1 is my select and desc_select1 is a text field hidden.
But dosen't works. why?
Regards
monak83