How to make the filter select option unselectable
How to make the filter select option unselectable
I am copying the data from my table to an excel, however i am having some redundant information coming to excel for example
show [x]
showing 10 to 20 of 30 entries, previous next ect
these information can easily be deleted from the excel
however the part i am stuck is the filter select from the footer TR, the select is copied to excel
i do not want this filter select option to be selectable i tried to apply the following css to the TD
.unselect{-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
however, when i make ctrl+a i see this TD is not selected but when i make a copy and paste into excel these filters are coming together.. how can i avoid this?