以下のコードは、 a 内のすべてのinput
andselect
要素をループしdiv
、値が空であるかどうかを確認してから非表示にしています。完全に機能しています。
$("#customfields_1 :input").filter(function() {
return $.trim(this.value).length === 0;
}).hide();
しかし、今私が本当に欲しいのはtd
、次のような以前の を非表示にすることです:
$("#customfields_1 :input").filter(function() {
return $.trim(this.value).length === 0;
}).prev('td').hide();