Skip to content

Instantly share code, notes, and snippets.

@antunesleo
Created March 29, 2017 00:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antunesleo/560be134ee0a4a095b4a84ccc86cc27a to your computer and use it in GitHub Desktop.
Save antunesleo/560be134ee0a4a095b4a84ccc86cc27a to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Teste ocultismo</title>
</head>
<body>
Masculino <input type="radio" name="sexo" id="masculino" checked>
Feminino <input type="radio" name="sexo" id="feminino"><br>
<div id="divmenstruacao" style="display:none">
Menstruacao <input type="text" name="menstruacao" id="menstruacao" >
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script type="text/javascript">
$("#feminino").on("click", function(){
$("#divmenstruacao").show();
});
$("#masculino").on("click", function(){
$("#divmenstruacao").hide();
});
</script>
<body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment