how to append dropdown list box
- by kumar
$("#Grid").click(
$("#showgrid").load('SomeURL'));
$.each($('#Grid td:nth-child(4n)'), function() {
var forthColumn = $(this);
forthColumn.append("<select><option value='1'>Division 1</option><option value='2'>Division 2</option><option value='3'>Division 3</option></select>");
});
};
I am trying to append the dropdown list box? this way but I am not seeing the dropdownbox at 4th colum?
is this right?
thanks for all..