eng_app に関連付けられている id 属性を削除しようとしていますが、以下のコードの問題点は何ですか? id 属性がまだ表示されています.
これは私がこれまでに試したコードです
var htm = $("#addin").find(".eng_data:first-child").html();
if($(htm).find(".eng_app"))
{
console.log("Inside if");
console.log($(this).removeAttr("id"));
}
var new_htm = "<div class='eng_data'>" +htm+"</div>";
$("#addin").append(new_htm);
HTML:
<div id="eng_data" class="eng_data">
<select class="eng_app">
<option value="-1" selected="">Choose application</option>
</select>
<input type="text" class="grades" placeholder="grades"/>
<a href="#" ><img src="images/add.gif" width="21" class="addrow"/></a>
</div>