Is it possible to create 2 dropdown lists using Ajax?
The code below creates one dropdown list.
Is it possible to create another dropdown using the same $options but with a different name?
Thanks,
Pericles
The code below creates one dropdown list.
$return = JHTML::_('select.genericlist', $options, 'team1',
'class="inputbox required select" size="1" ', 'value', 'text', $default);
Is it possible to create another dropdown using the same $options but with a different name?
$return = JHTML::_('select.genericlist', $options, 'team1',
'class="inputbox required select" size="1" ', 'value', 'text', $default);
$return = JHTML::_('select.genericlist', $options, 'team2',
'class="inputbox required select" size="1" ', 'value', 'text', $default);
Thanks,
Pericles