i am newbie in a code igniter .. so first i'll let you know what i am trying to do . i have two select boxes and three simple text boxes in a row ..so now it means i have five input boxes in one row .. the value of second dropdown comes based on the first drop down boxe.means if i select some thing from first select box then the values against the first selection will come in a second dropdown or select box..and by the way values are coming dynmically from the database . ok after then i have make five rows with for loop .. and now only the select boxes of first row is working .. not other four rows .. and i want to grab all the values which filled by the user here is my view
<tr>
<th>Category:</th>
<th>Items:</th>
<th>Selling Price:</th>
<th>quantity:</th>
<th> total:</th>
</tr>
<?php for ($i = 0; $i < 5; $i++) {
?>
<tr>
<td>
<?php echo form_dropdown('cat_id', $records2, '#', 'id="category"');?>
</td>
<td>
<?php echo form_dropdown('item_id', $records3, '#', 'id="items"'); ?>
</td>
<td><?php echo form_input($price); ?> </td>
<td><?php echo form_input($quantity); ?></td>
<td> <?php echo form_input($total); ?>
</td></tr>
<?php }?></table>
my javascript
$(document).ready(function(){
$('#check').click(function(){
alert("hello");
return false;
});
$('#category').change(function(){
$("#items > option").remove();
var category_id = $('#category').val();
$.ajax({
type: "POST",
url: "stockInController/get_Items/"+category_id,
success: function(items) //we're calling the response json array 'cities'
{
$.each(items,function(item_id,item_name)
{
var opt = $('<option />');
opt.val(item_id);
opt.text(item_name);
$('#items').append(opt);
});
}
});
});
});
i thing i have to given each select box an id with $i but i dont know how can then i do this in jquery ...remember only my first row is successfully working not other four
select boxeshad same ids then only the first one will be worked. I suggest you to changeidtoclass. – Jai Jan 18 at 7:41