Show NKAlert

NKAlert

Description

NKAlert shows alert with provided title and message

Usage

NKAlert("title", "message")

Example

<a href="#" onClick="showAlert();">Show NKAlert</a>

When the link is clicked, the "showAlert" function is called & the alert is displayed:

function showAlert()
{
NKAlert("Alert Title", "Your message goes here");
}