Здравствуйте!
Извиняюсь если тема была уже. В поиске не нашел.
У меня есть код:
<html>
<head>
<script src="jquery-1.4.2.min.js"></script>
<script src="jquery-ui-1.8.5.custom.min.js"></script>
<title>Items</title>
<link rel="stylesheet" href="jui/css/ui-lightness/jquery-ui-1.8.5.custom.css">
<script>
$(function() {
var $items = $( "#items" ),
$trash = $( "#trash" );
$( "li", $items ).draggable({
revert: "invalid", // when not dropped, the item will revert back to its initial position
cursor: "move"
});
$trash.droppable({
accept: "#items > li",
drop: function() {
//Получение ID брошенного элемента
alert(Алерт ID);
}
});
});
</script>
</head>
<body>
<ul id="items" class="items">
<li id="1">Item 1</li>
<li id="2">Item 2</li>
<li id="3">Item 3</li>
</ul>
<BR><HR><BR>
<div id="trash" >
T R A S H
</div>
</body>
</html>
Подскажите, как получить id элемента списка который я переместил на слово TRASH и бросил?