jQuery wildcard selector on attributes -
i have 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 able individual attributes selectors: $('[data-action\\:edit]') or $('[data-action\\:delete]') how can data-action:* elements?