Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>select option for MD Arman</title>
- </head>
- <body>
- <select id="myList">
- <option>select a year</option>
- </select>
- <script>
- function myFunction() {
- var node = document.createElement("option");
- var node1 = document.createElement("option");
- var node2 = document.createElement("option");
- var textnode = document.createTextNode("2017");
- var textnode1 = document.createTextNode("2016");
- var textnode2 = document.createTextNode("2015");
- node.appendChild(textnode);
- node1.appendChild(textnode1);
- node2.appendChild(textnode2);
- document.getElementById("myList").appendChild(node);
- document.getElementById("myList").appendChild(node1);
- document.getElementById("myList").appendChild(node2);
- }
- myFunction()
- </script>
- </body>
- </script>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement