Hi RK,
Is this what you wanted?
<html>
<head>
<title>Dialog</title>
</head>
<body>
<script>
function TestDialog()
{
alert("You have clicked " +confirm('Test Dialog'));
}
</script>
</body>
<a href="#" onclick="TestDialog()">Test</a>
</html>
Hi RK,
Is this what you wanted?
<html>
<head>
<title>Dialog</title>
</head>
<body>
<script>
function TestDialog()
{
alert("You have clicked " +confirm('Test Dialog'));
}
</script>
</body>
<a href="#" onclick="TestDialog()">Test</a>
</html>