dhoward007
Programmer
I am currently using the confirm box in my page but I would like to customize the way the box looks. I would like the user to choose yes or no instead of ok or cancel.. Below is my code. Is there another way to do this?
<script language="JavaScript">
function verify() {
var answer;
answer = confirm("Are you sure you would like to shut off polling for this server?"
if (answer == 0) {
return false;
}
else {
return true;
}
}
</script>
<a href="sqlpolling.asp" onClick="return verify();">ON</a>
<script language="JavaScript">
function verify() {
var answer;
answer = confirm("Are you sure you would like to shut off polling for this server?"
if (answer == 0) {
return false;
}
else {
return true;
}
}
</script>
<a href="sqlpolling.asp" onClick="return verify();">ON</a>