Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 25, 2019 18:31
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 parzibyte/4573ea7df1d713c6357b912c2d165168 to your computer and use it in GitHub Desktop.
Save parzibyte/4573ea7df1d713c6357b912c2d165168 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Select con jQuery</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-3.4.0.min.js" integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg="
crossorigin="anonymous">
</script>
</head>
<body>
<h1>Select con jQuery</h1>
<p>
<a target="_blank" href="//parzibyte.me/blog">By Parzibyte</a>
</p>
<select id="miSelect"></select>
<br>
<button id="btnAgregar">Agregar</button>
<button id="btnLimpiar">Limpiar</button>
<button id="btnMostrar">Mostrar seleccionado</button>
<script src="script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment