I have a table generated from Sphinx that has a border of width 1.
<table border="1" class="docutils">
Can I change the border width to 0 using jQuery/javascript?
I have a table generated from Sphinx that has a border of width 1.
<table border="1" class="docutils">
Can I change the border width to 0 using jQuery/javascript?
Yes you can. You want to use the attr() function like this...
I would tend to use the
.css()
function as opposed to.attr()
... eg::)
use