So I have a dropdownlist(below),
@Html.DropDownListFor(model => model.Reference, ViewBag.ISharedUI as
SelectList, "-- REFERENCE TYPE --")
@Html.ValidationMessageFor(x => x.reftab)
and I have 2 div which are(below)
<div class="widgetbox" id="divone">
Some contents
</div>
and
<div class="widgetbox" id="divtwo" style="visibility:hidden">
Some contents
</div>
So what I need to do is, to select a certain value from the dropdown list, and it will hide the first div and show the second div, and when I select another value, vice versa. All codes are in my view file. What change can I make? I hope my explanation is clear. Sorry for bad english. thanks
edit: as shown, divtwo visibility is set hidden. I wanted it to be shown and divone to be hidden when certain value from dropdownlist is selected