i have 2 select box on my page named [Municipality] and [brgy] but the [brgy] select is auto populated by what ever the user selects on [Municipality] select box using change() event in jquery..the following are my code for this..
This is for the Municipality select box that populates the brgy select box
$("select[name='Municipality']").change(function(){
// get the selected option value of country
var optionValue1=$(this).val();
$("#Dbrgy")
.html('ajaxLoader.gif')
.load('all.php', {Muni:true, MunVal: optionValue1, status: 1}, function(response) {
if(response) {
$("#Dbrgy").css('display', '');
} else {
$("#Dbrgy").css('display', 'none');
}
});
});
and this is the all.php that process the request
<?if(isset($_POST['Muni']))
{
$value = $_POST['MunVal'];
$q=mysql_query("SELECT * FROM `tbl_brgy` WHERE `brgy_id`='$value'");
?>
<select name="brgy" id="brgy"class="input" style='width:150px;'>
<option value='0'>»SELECT</option>
<?while($result=mysql_fetch_array($q)){?>
<option value="<?php echo $result['brgy#'] ?>"><?php echo $result['name'] ?>
</option><?}?>
</select>
<?}?>
now after populating the brgy select box i need to set selected value on it that was retrived from mysql database.
and this is how i set the selected value from database
if(isset($_POST['RetrieveUpdate']))
{
$qure=mysql_query("SELECT * FROM `tbl_touristspot` where `spot_id`=$_POST[Id]") or die (mysql_error());
while($result=mysql_fetch_array($qure))
{
echo"<script> $('#brgy').val($result[brgy]);</script>";
}
but that seems not working.