Java script (ShowConfirm) does not show in Firefox browser
Hello Experts,
On my web page i have abutton that when a user clicks does invoke a java show confirm message. This message pops up when you are using IE browser but with Firefox it doesn't.
Anyone please shed some light on this
Thanks
<script language="javascript" type="text/jscript">
function ShowConfirm(textBox)
{
var confirmtext ="Thank you! ...Your Registration number is: ";
return confirm(confirmtext + textBox.value);
}
</script>