Skip to content

Instantly share code, notes, and snippets.

@fchevitarese
Created August 24, 2015 18:49
Show Gist options
  • Save fchevitarese/973e8d4bd36ca884efa3 to your computer and use it in GitHub Desktop.
Save fchevitarese/973e8d4bd36ca884efa3 to your computer and use it in GitHub Desktop.
sample.html
<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