I have this stuff
<table>
<tr>
<td>
foo
</td>
<td>
<a href="#" data-action:edit="1">[EDIT]</a>
<a href="#" data-action:delete="1">[DEL]</a>
</td>
</tr>
<tr>
<td>
bar
</td>
<td>
<a href="#" data-action:edit="2">[EDIT]</a>
<a href="#" data-action:delete="2">[DEL]</a>
</td>
</tr>
<tr>
<td>
foobar
</td>
<td>
<a href="#" data-action:edit="3">[EDIT]</a>
<a href="#" data-action:delete="3">[DEL]</a>
</td>
</tr>
</table>
And I was able to get individual attributes by this selectors:
$('[data-action\\:edit]')
or $('[data-action\\:delete]')
How can I get all data-action:*
elements?
Hello
` is valid. It's only a example for this case. http://stackoverflow.com/questions/992115/custom-attributes-yea-or-nay – Ragen Dazs May 18 '13 at 12:09