Created
August 24, 2015 18:49
-
-
Save fchevitarese/973e8d4bd36ca884efa3 to your computer and use it in GitHub Desktop.
sample.html
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> | |
<title>Test</title> | |
<header> | |
<script language="javascript"> | |
function myfunction(event) { | |
// Aqui você pode chamar outras funções tipo a de fazer o post ;) | |
alert("Olá!"); | |
console.log(event); | |
} | |
</script> | |
</header> | |
<body> | |
<select id="myselect" name="myselect" onchange="myfunction(this)"> | |
<option value="1">1</option> | |
<option value="2">2</option> | |
</select> | |
<select id="myotherselect" name="myotherselect" onchange="myfunction(this)"> | |
<option value="tres">3</option> | |
<option value="quatro">4</option> | |
</select> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment