I am trying to display a text field on clicking a link on the same page.
html file
<a href="" onclick="disp_qa()">Add another question</a><br/><br />
<script>
    function disp_qa()
    {
    document.getElementById("form_d").style.display="block";
        document.getElementById("form_da").style.display = "block";
    }
</script>
These does not seems to work. How can i do it? Thanks in advance
 
    