actionURL property
Gets the URL of a Jump List item that is removed.
This property is not supported for Windows Store apps 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
Show:
