セレクタで属性名の部分一致

忘れてて調べるはめになったのでメモ

// 前方一致
$("[attribute^=value]")

// 後方一致
$("[attribute$=value]")

// 部分一致
$("[attribute*=value]")