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 / drorasta

you don't need to use AJAX for this. Just a simple
javascript:

<html>
<body>

<script type="text/javascript">
function showSelected(val){
document.getElementById
('selectedResult').innerHTML = "The selected number is - "
+ val;
}
</script>

<div id='selectedResult'></div>

<select name='test' onChange='showSelected(this.value)'>
<option value='1'>one</option>
<option value='2'>two</option>
</select>

</body>
</html>

Is This Answer Correct ?    375 Yes 116 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What backslash character will match whitespace?

1000


What is the default session time in php?

960


How a variable is declared in php?

893


Can we use session in mvc?

942


How come the code works, but does not for two-dimensional array of mine?

920


What is the difference between the functions strstr() and stristr()?

951


How to remove a file?

1062


Php being an open source is there any support available to it?

1041


What is the difference between md5(), crc32() and sha1() crypto on php?

1010


Why do you need php?

944


What is the difference between static and dynamic websites?

927


Why laravel is best php framework?

946


What are different types of Print Functions available in PHP?

907


How can we change the maximum size of the files to be uploaded?

967


What is final keyword in php?

960