Files
edx-platform/common/test/data/uploads/simple-question.html
Yusuf Musleh b97007e182 feat: Handle JSInput extra files when copying/pasting (#32847)
This takes into account the extra files that are usually required when
copying problems containing JSInputs. Static files such as additional
CSS and JS files needed to interact and style the problem.
2023-07-31 11:12:10 -07:00

19 lines
565 B
HTML

<!-- Original Source: https://files.edx.org/custom-js-example/jsinput_example.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Simple Question</title>
<link rel="stylesheet" type="text/css" href="simple-question.css">
</head>
<body>
<script src="jschannel.js"></script>
<script src="simple-question.js" defer></script>
<img src="image.jpg" />
<label class="directions">Here is a list below, please select:
<select class="choices"></select>
</label>
<p aria-live="polite" class="feedback"></p>
</body>
</html>