Write a jQuery code to add options to a drop-down list.
Answer :
File Name : jQuery.html
<html>
<head>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<title>SP Creation</title>
</head>
<body>
<div class="container">
<div class="col" id="box">
<select name="sel" id="sel" class="form-control">
<option value="India">India</option>
<option value="US">US</option>
<option value="UK">UK</option>
</select>
</div>
<button id="add">Add</button>
</div>
<script>
$(document).ready(function(){
$("#add").click(function(){
$("select").append("<option>New Country</obtion>");
});
});
</script>
</body>
</html>
Write a jQuery code to add options to a drop-down list.
Reviewed by technical_saurabh
on
April 30, 2021
Rating:
No comments:
Post a Comment