View Single Post
  #6 (permalink)  
Old Oct 9th, 2007, 09:59
Rakuli's Avatar
Rakuli Rakuli is offline
SuperMember

SuperMember
Join Date: Sep 2007
Location: Australia
Age: 24
Posts: 956
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: redirecting form based on radio button values

Woops

Didn't close the function

Code: Select all
<script type="text/javascript">
function updateToggleDiv(divName)
{
    document.getElementById('proceedLink').onmousedown = function () 
   {
    toggleDiv('requestMed'); 
    toggleDiv(divName);
    }
}
That should be okay **Strokes chin and makes contemplative noise.. "hmm" **
</script>
Reply With Quote