16 lines
575 B
HTML
16 lines
575 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Dropdown with Dynamic Text</title>
|
|
<link rel="stylesheet" type="text/css" href="https://files.edx.org/custom-js-example/jsinput_example.css">
|
|
</head>
|
|
<body>
|
|
<script src="https://files.edx.org/custom-js-example/jschannel.js"></script>
|
|
<script src="https://files.edx.org/custom-js-example/jsinput_example.js" defer></script>
|
|
<label class="directions">Select an option from the list:
|
|
<select class="choices"></select>
|
|
</label>
|
|
<p aria-live="polite" class="feedback"></p>
|
|
</body>
|
|
</html>
|