削除された LI アイテムの ID を取得しようとしています。以下は私のコードです:
// when the user wants to just trash a task compeletely
$(".ui-icon-trash").on("click", function(e) {
var id = $(this).parent("li");
// var idVal = id.getAttribute("id");
tb_show("Warning!", "#TB_inline?height=100&width=260&inlineId=divDelete", "");
e.preventDefault();
$(this).parent("li").remove();
});
問題は、id.getAttribute("id") が undefined を返すことです。
私の LI 属性は次のようになります。
<li class="ui-widget-content ui-corner-tr" id="1">
<h5 class="ui-widget-header">Task</h5>
<img src="graphics/task.png" width="96" height="72" />
Sample Task
<a href="" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
<a href="" title="Delete task" class="ui-icon ui-icon-trash">Delete task</a>
</li>