alert( )

Displays an alert box with a message and an OK button in the M-Business Client browser.

Interface

PODSWindow

IDL definition
void alert(PODSString msg);
JavaScript synopsis
window.alert(msg)
C synopsis
void PODSalert(
  PODSWindow* window,
  PODSString msg
);
Parameters
  • window   The PODSWindow object.

  • msg   [in] The message to display in the dialog.

Returns

None

Remarks

Use to display a message that does not require a user decision.

See also

confirm( ), prompt( )