I'd like to disable a Reprompt button after clicking it, but I'm not sure of the javascript syntax to access the button to do this. Any help would be much appreciated...
Hi,
Give a name to the button,insert a HTML item and create a function in javascript in thae HTML item with the syntax given below.
------------------------------------------------
function buttonClick()
{
document.form1.but.disabled = true;
}
</script>
-------------------------------------------------
Here i had named the Form as "form1" and button as "but"
hth