Forum Moderators: open
function startExp()
{
pagename = "http://LINK";
var newWind=window.open(pagename,"survey","height="+(screen.availHeight-60).toString()+",width="+(screen.availWidth-30).toString() +",scrollbars,status,resizable, left=2, top=2")
}
after pressing the submit button that triggers the above function:
<input type="button" name="Button" value="Start Survey" onClick="startExp()">
i would like to disable the submit button (that another start of the survey is not possible) ...
can anybody give me an idea of how to do that?
thanks a lot
m
after pressing the submit button that triggers the above function:
<input type="button" name="Button" value="Start Survey" onClick="startExp(this)">