After reading this and this, I tried to apply a border on all my tr
elements. If I do this:
$('table').find('tr td').css({'border':'15px solid red'});
it works, but I want it on the whole row. Thus I do this:
$('table').find('tr').css({'border':'15px solid red'});
But it doesn't work! Background-color and other CSS styles like this work:
$('table').find('tr').css({'color':'rgb(100,200,150)'});
What am I missing?