Skip to content

Commit b64ff56

Browse files
committed
docs: add missing selector to draggable hold event example
1 parent 0e61dfc commit b64ff56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/api/javascript/ui/draggable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ The `hold` event represents a jQuery `mousedown` event and contains all the even
573573
$("#draggable").kendoDraggable({
574574
holdToDrag: true,
575575
hold: function(e) {
576-
$("draggable").css("background", "red");
576+
$("#draggable").css("background", "red");
577577
},
578578
hint: function(element) {
579579
var hintElement = $("<div id='hint'></div>");

0 commit comments

Comments
 (0)