I have a dropdownlist with two values: Sponsor and Social_Worker. All I want to do is that when one of them is selected it shows one div and hides another, and vice versa if the other is selected. I managed to do this with buttons, but can't find the proper command to do it with a dropdownlist, the only information I am finding is getting the selected value.
Buttons jquery (this is working):
<script type="text/javascript">
$(document).ready(function () {
var det = $("#SponsorDetails");
var all = $("#AllDetails");
$(all).hide();
$(det).hide();
$("#Social_WorkerButton").click(function (e) {
e.preventDefault();
$("#AllDetails").show("slow");
$("#SocialWorkerSubmit").show("slow");
$("#SponsorDetails").hide("slow");
});
$("#SponsorButton").click(function (e) {
e.preventDefault();
$("#AllDetails").show("slow");
$("#SponsorDetails").show("slow");
$("#SponsorSubmit").show("slow");
});
});
I tried using:
$("#SelectAccount").change(function (e) {
e.preventDefault();
$("#SponsorDetails").show("slow");
$("#SponsorSubmit").show("slow");
});
HTML of DropDownList:
<asp:DropDownList ID="SelectAccount" runat="server">
<asp:ListItem>Sponsor</asp:ListItem>
<asp:ListItem Value="Social_Worker">Social Worker</asp:ListItem>
</asp:DropDownList>
Just to see if any change to the dropdownlist does anything, but this doesn't seem to work.
