Ateş Bu kod çalışıyor. IE uyarı boştur.
<select id="ronny" name="ronny" onchange="AjaxPost();alert(document.getElementById('ronny').value);">
<option id="selected_ronny">All</option>
<?php
foreach($d_ronny as $ronny)
{
if ($ronny == $_POST['ronny_select'])
{
echo "<option selected id='selected_ronny'>$ronny</option>";
}
else
{
echo "<option>$ronny</option>";
}
}
?>
</select>
The options are fox example :
All
abc
123
xyz
When i select xyz
, the alert shows xyz
. In IE the alert is empty.
teşekkür ederim!