Created
March 29, 2017 00:38
-
-
Save antunesleo/560be134ee0a4a095b4a84ccc86cc27a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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