Hi,
How do I show a div class on clicking a link?
This is the div class that must be shown:
<div id="fb_contentarea_col1down1">
<div class="myform" id="step2">
<form action="index.html" method="post" name="FieldSetting" id="FieldSetting">
<label class="topspace">Field Label:
</label>
<input id="fieldName" name="fieldName"></input>
<label class="topspace">Field Size:
</label>
<select id="fieldSize" name="fieldSize" >
<option >Choose a size </option>
<option value="small">Small</option>
<option value="medium">Medium</option>
<option value="large">Large</option>
</select>
<label class="topspace">Options:
</label>
<input id='required' name="required" type='checkbox'>Required</input>
<label class="topspace">Instruction for User:
</label>
<textarea cols="40" id="instructions" name="instructions" rows="20" style="width: 98%; height: 70px;"></textarea>
<br class="clear_both"/>
<input type="submit" class="button" value="Submit"/>
</form>
</div><!-- End of myform -->
</div><!-- End of fb_contentarea_col1down1 -->
This div class must be shown when I click any of the links given below:
<div id="fb_contentarea_col1down">
<ul class="formfield">
<li class="selected"><a href="#" id="text">Text</a></li>
<li><a href="#" id="textarea">Textarea</a></li>
<li><a href="#" id="checkbox">Checkbox</a></li>
</ul>
</div>
The 'myform' div is shown by default. how to show the same 'myform' div when I click the link for textarea or checkbox?