Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

actionURL property

Gets the URL of a Jump List item that is removed.

This property is not supported for Windows Store apps using JavaScript.

Internet Explorer 9

 

Syntax

JavaScript

p = object.actionURL

 

Property values

Type: String

the URL of the Jump List item.

Remarks

The onmssitemodejumplistitemremoved event is raised on two conditions:

  1. The msSiteModeShowJumpList method was called
  2. 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

event
MSSiteModeEvent
Reference
msSiteModeAddJumpListItem
onmssitemodejumplistitemremoved

 

 

Show:
© 2017 Microsoft