HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers44/ledubtoernooi.nl/wwwroot/inschrijven/css-js/test.js
/**
 * Created by joepvanhunsel on 13-02-14.
 */
$(document).ready(function()
{
    $(".sponsor").hide();
    $("#ledubteam").hide();

  /*  $('input[type="radio"]').click(function()
    {
        if($(this).attr("value")=="teamyes")
        {
            $(".team").show();
        }else if($(this).attr("value")=="teamno")
        {
            $(".team").hide();
        }
    });*/

    $('input[type="radio"]').click(function()
    {
        if($(this).val()=="yes")
        {
            $(".sponsor").show();
        }else if($(this).val()=="no")
        {
            $(".sponsor").hide();
        }else if($(this).val()=="teamyes")
        {
            $("#ledubteam").show();
        }else if($(this).val()=="teamno")
        {
            $("#ledubteam").hide();
        }
    });

});