regex - Using regular expression in CSS to match numbers -
i have bunch of rows have id contains number name this:
<tr id="839" class="stock"> ... <tr id="2493" class="stock"> ... <tr id="4156" class="stock"> ...
my css rule fails when apply this:
tr[id=^['[0-9]'] { //css rules goes here }
with example you'd better off targeting them
tr.stock {}
note: ids shouldn't start number
jquery option: jquery selector regular expressions