In my view I have 5 partials that must be rendered. I needed that clicking one is shown and the others are hidden ...
It's in this structure:
<ul class="nav nav-tabs">
<li class="active"><a href="#cliente">Cliente</a></li>
<li><a href="#anamnese">Anamnese</a></li>
<li><a href="#recordatorio">Recordatorio</a></li>
</ul>
<div id="cliente">
@Html.Partial("_PartialCliente", Model)
</div>
<div id="anamnese">
@Html.Partial("_PartialAnaminese", Model)
</div>
<div id="recordatorio">
@Html.Partial("_PartialRecordatorio", Model)
@Html.Partial("_PartialRefeicao", Model)
@Html.Partial("_PartialQuestionarioFrequenciaAlimentar", Model)
</div>
How could I do this? That is, how could I click on the client tab and show only the partial referent and the others are hidden and in the same way for the others?