I have a jQuery instant search bar on top of a data table. All records matching the search condition will be visible $(row).show(); and the rest are hidden $(row).hide().
Problem:
After a search, I use the mice to select / copy the list of rows from search result and paste them into Excel. The "hidden" records also get pasted.
I tried:
$(row).css('visibility','collapse'); instead of hide() -- doesn't work in IE (Row does't collapse)
How do I get "visibility:collapse" work in IE? Or is there a different workaround to this problem?