I have this code that works as posted:
$('#cs_tableVideoListings tbody tr td').each(
function() {
$(this).css('border-bottom','2px solid gray');
})
the issue is that "gray" is too dark. When I try #333 or any hex number, it doesn't work at all.
I only need to apply the bottom border, so using "border-bottom" : "2px solid #333" (note colon) doesn't work as that syntax seems to only work when applying multiple styles.
So, I'm wondering at to apply a hex color in the above code w/o getting ridiculous about assigning variables and such.
Thanks