Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

display selected value in dropdown list through javascript
without page refresh

Answer Posted / dhir

<html>
<body>

<script type="text/javascript">
var show
function showSelected()
{
show
=document.me.test.options[document.me.test.selectedIndex].value;

document.write(show);
}
</script>
<form name="me">
<select name='test' onChange='showSelected()'>
<option value='1'>one</option>
<option value='2'>two</option>
</select>
</form>
</body>
</html>

Is This Answer Correct ?    169 Yes 102 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How long is session timeout?

953


Does php 5 support exceptions?

1077


What is the array in php?

972


How can we access the data sent through the url with the get method?

1144


What is the difference between htmlentities and htmlspecialchars in php?

975


What is difference between mysql_fetch_array and mysql_fetch_assoc?

912


Code to open file download dialog in PHP?

1042


How to open a file in php?

1044


Can I use node js with php?

987


Why namespace is used in php?

957


What is a static method php?

969


How to make horizonatl menu and vertical menu responsive

2262


What is the use of $_server["php_self"] variable?

964


What is namespace and use in php?

949


Tell me what is the use of isset() in php?

1020