今後使いそうなのでメモ
$(function() {
$("p:empty").remove();
});
##親要素を消したいとき
.parent()を使う
tableの場合
$(function() {
$("table tr td:empty").parent("tr").remove();
});
Go to list of users who liked
More than 5 years have passed since last update.
今後使いそうなのでメモ
$(function() {
$("p:empty").remove();
});
##親要素を消したいとき
.parent()を使う
$(function() {
$("table tr td:empty").parent("tr").remove();
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked