jQueryにカスタムのAddMethodがあり、次のように検証するとします。
$.validator.addMethod('min-length', function (val, element) {
// do stuff
// the error message here needs to be dynamic
}, 'The field cannot be less than than '
+ element.attr('data-min') + // it is within the closure, but it can't grab it
' length.');
問題の要素変数を取得し、そこから値を取得する方法がわかりません。ここで何が欠けていますか?