$.post から返された結果の dom に jQuery でクラスを追加することができません。
これが機能しないのはなぜですか?
$.post(url, data, function (result) {
$(result).addClass('.update');
$this.closest('.inline').replaceWith(result);
});
置換は機能していますが、.update クラスがありません。
$.post から返された結果の dom に jQuery でクラスを追加することができません。
これが機能しないのはなぜですか?
$.post(url, data, function (result) {
$(result).addClass('.update');
$this.closest('.inline').replaceWith(result);
});
置換は機能していますが、.update クラスがありません。