Is there a way to target a table
on a webpage using a CSS selector?
The table structure looks like this:
<table border="1" width="560" cellspacing="0">
<tr>
<td height="28" colspan="3" bgcolor="#FFFFF...>
</tr>
</table>
I am looking for a jquery or css selector that can be written in one line to specifically target the table
with border=1
This table does not have any associated class or id, and accessing it through parent-child relationships is not an option
The goal is to find a selector that targets a table
where the attribute border=1
(not inside a style=""
tag), simply in the HTML markup itself
<table border=1"> ....</table>