There are tags with attributes id like this
<span id="attr35"></span>
<span id="attr44"></span>
<span id="attr23"></span>
Need to set the style to them like this (last two digits might be any)
$("span[id=attr???]").setStyle({'display':'inline'});
Is it possible?
You use valid Selectors API selectors.
If you want more than one match, use
$$Oops, one more issue. You should use
.invokeif you are getting multiple matches. You can’t callsetStyledirectly on the returned set.