What i need to do is make a second form invisble until the first form has been submitted
i have this in my head
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
document.form2.txtyes.style.visibility = 'hidden'
document.form2.txtno.style.visibility = 'hidden'
// End -->
</script>
then this...
I have 2 forms on a page. I would like to have the second button 'grayed out' until the first button has been clicked, any ideas?
actually, I have a sentence, "Did the page print correctly? and yes/no buttons. Can i have these items 'appear' when the 'print letter' button is clicked?
TIA
Amanda
i copied this into my head
<script>
function searchPrompt(obj)
{
var rsp = prompt("Enter a value to search for.","");
if(rsp) obj.value = rsp.toUpperCase();
}
</script>
then added this to my button
<input type="button" value="Search this menu"...
http://javascript.internet.com/forms/option-search.html
i like this script, but i need it to be triggered on a button click...for instance, instead of the prompt being triggered by the onfocus, i would like to have a button next to the drop down list that says, "Search this menu for"...
I have a LARGE dropdown list for a user site, we are talking hundreds of options. I would like to implement a type of alpha search method to make navigation of the drop-down easier. I tried the 2 scripts on javascriptsource.com, and neither were options. The array builder simply ran too slow for...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.