Skip to main content

attachEvent

Subscribes to the specified event and calls the callback function when the event fires.

Syntax

expression.attachEvent(eventName, callback);

expression - A variable that represents a Api class.

Parameters

NameRequired/OptionalData typeDefaultDescription
eventNameRequiredstringThe event name.
callbackRequiredfunctionFunction to be called when the event fires.

Returns

This method doesn't return any data.

Example

Subscribe on hyperlink click event in a presentation.

// How to trigger an event on hyperlink click in a presentation.

// Subscribe to the hyperlink click event in a presentation.

Api.attachEvent("asc_onHyperlinkClick", function() {
console.log("HYPERLINK!!!");
});