EN
이 콘텐츠는 한국어로 제공되지 않아 영어 버전으로 표시됩니다.
actionURL property
Gets the URL of a Jump List item that is removed.
This property is not supported for Windows Store apps built for Windows using JavaScript.
![]() |
Syntax
| JavaScript | |
|---|
Property values
Type: String
the URL of the Jump List item.
Remarks
The onmssitemodejumplistitemremoved event is raised on two conditions:
- The msSiteModeShowJumpList method was called
- An item has been removed from the Jump List since the previous invocation of msSiteModeShowJumpList
The action URL that is returned in this event property is the same URL that is set by the pinned site with msSiteModeAddJumpListItem.
Examples
The following script demonstrates how to attach an event handler and respond to the user that removes a Jump List item in a pinned site.
function removedItemHandler(evt)
{
alert("Item removed from Jump List: " + evt.actionURL);
}
document.addEventListener('mssitemodejumplistitemremoved', removedItemHandler);
See also
Send comments about this topic to Microsoft
Build date: 1/23/2013

