can I hide the perticular column in jquery like this?
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-05-12T18:39:13Z
Indexed on
2010/05/12
18:44 UTC
Read the original article
Hit count: 139
jQuery
I am hiding the entire column in the grid like this?
// $('#Grid tr th').each(function(column) {
// if ($(this).is('#div.id')) {
// hide();
// }
// });
can I do like this?
thanks
© Stack Overflow or respective owner