asked on December 4, 2017
Hi all,
I want to auto populate a field1 when my radio's value is "c".
This is my code
$('Field2').change(function()
{
if(document.getElementById('Field2').value = "Vinicard Classic")
{
document.getElementById('Field1').value = 0 ;
}
});
But I have nothing.
Someone can help me ?
0
0