I have this simple table where, if I click on a column, I need to make the entire selected column (from top to buttom) as selected.
I have no problems with colors or html, but I have a problem with box-shadowcss property .
Here's how it should look:

Please note: "right-shadow"and "left-shadow"(below - I don't care)
But when I tried to do this ( JSBIN SAMPLE ) via JQ:
$("#tblPlan td:nth-child(2)").addClass('shadow')
Where:
.shadow
{
box-shadow:0px 0px 10px black;
}
He applies it to all borders (as is obvious) (including inside):

Question
How can I reach a solution where only left and right (I don’t care at the bottom) will be obscured?
jsbin