I have two dropdown boxes, actually I have done this functionality by using jquery and ajax by calling an id that if I select one thing it will appear on second select box but the main problem I am facing is that I am using a template where a select box uses some class name called "cho" as if I don't use this class obviously my select box look wired so I like the style of it .So if I use this class in my second select box where the result display then the functionality wont work but if I don't use the class then it will work so what I want is: I want to use the css class and implement the functionality too I checked in every css file but I cant find cho class so what I think that if I cant change the css file may be there is the way in jquery that I'll resolve this issue.
This is my first select box ,where select box and css working fine.
<?php echo form_dropdown('cat_id', $records2, '#', 'id="category" class = "cho"');?>
2nd select box -without css ..functionality successfull
<?php echo form_dropdown('item_id', $records3, '#', 'id="items"'); ?>
With css--functionality wont work but css do:
<?php echo form_dropdown('item_id', $records3, '#', 'id="items" class = "cho"'); ?>
My javascript:
<script type="text/javascript">// <