Hi, i am working in php. I have written code for displaying combo box like this :
<select name="country" id="idCountry" class="clsCountry" >
<?php foreach($objCountries as $objCountry):?>
<option value="<?php echo $objCountry->getId()?>" ><?php echo $objCountry->getName()?> </option>
<?php endforeach;?>
</select></td>
For change event:
$("#idCountry").change(function(){ .... });
but change event is not getting fired. Anybody have any idea about it? Thanks in advance.