Custom Search

Monday 20 October 2014

Program to display selected item for the list and print when pressed a button

Aim: Write a program to display selected item for the list and print when pressed a button 

Program: 
<html>
<body>

<form>
Select your favorite fruit:
<select id="mySelect">
  <option value="apple">apple</option>
  <option value="mango">mango</option>
  <option value="grapes">grapes</option>
  <option value="banana">banana</option>
</select>
</form>



<button type="button" onclick="myFunction()">print</button>

<script>
function myFunction() {


document.write(mySelect.value);

}
</script>

</body>
</html>

No comments:

Post a Comment

Laptops