how to append dropdown list box
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-05-04T21:03:52Z
Indexed on
2010/05/04
21:08 UTC
Read the original article
Hit count: 154
jQuery
$("#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..
© Stack Overflow or respective owner