Selecting a Table Cell
-
Hi is there any way that we can select or unselect single or multiple cells in a HTML Table by clicking on the cell. if any body knows any example or any thing helpful about this please reply me. thanks do it man
Well, Just give ur specific purpose. I have one proposed solution: 1). Set a check box to each cell , and on checking that javascript function will call to change a color. 2).You can set a top check box to check all the check boxes and hence colors to each cell.:-O Any systematic work reflects its significance for a long time, Thogh I m not totally against "The Prototyping".So let's discuss in depth.....
-
Hi is there any way that we can select or unselect single or multiple cells in a HTML Table by clicking on the cell. if any body knows any example or any thing helpful about this please reply me. thanks do it man
If you mean selection which can be then copied into clipboard, then I would look into using something like:
var obj = document.getElementById('my_table_row')
var tr = obj.createRange();
tr.select();You will have to play around with this code, but it should give you a general idea as to how to accomplish selection. How do I print my voice mail?