Sample MsgDialogBox

Basic usage of MsgDialogBox opend on click event of button

Source Code


$(document).ready(function() {
	$("#open").click(function () {
		//Message box initialized with "hello world"
		new AntMessageBox().MsgDialogBox("Hello World");	
	});				
});