Jump to content

PHP,Ajax & Browser Problem


yoursanjay

Recommended Posts

Hi

I have written a PHP & ajax script which dynamically select a dependent dropdown select box. The script is running perfectly in Firefox but not in Internet Explorer & Safari. I have to run the script in all the browser perfectly. If there is any error in my script,please help me to solve it out. I don't know DOM technology. I have to run the script perfectly in IE.

 

The problem which I am facing:

function:

The "category" drop down select box select a category and depend from this selected category the list of area of interest will be shown in" Area of Interest" select box. It is dependent dynamic drop down select box.

problem: this functionality is perfectly shown in Firefox but not in Internet Explorer. Whenever a category is selected from category drop down down select box, Area of Interest drop down box remains blank.

I need to show the script perfectly in Internet Explorer.

<select name="category" size="1" class="body-text-grey" onchange="showDivision(this.value)">
<option selected="selected" value="blank">Choose a Category</option>
<?php
$res=mysql_query("select * from mbehub_categories where parent_id='0' order by id") or die (mysql_error());
while ($rw=mysql_fetch_array($res))
{

?>
<option value="<?php echo $rw['id'];?>"><?php echo $rw['name'];?></option>
<?php
}
?>
</select>

<tr>
<td height="22" align="left" valign="top" class="body-text-grey-2">Primary Area of Interest </td>
<td height="22" colspan="2" align="left" valign="top">
<select name="division" size="1" class="body-text-grey" id="txtDivision">
<option selected="selected">Select Area of Interest</option>
</select>


</td>
</tr> 

 

And the Ajax is:

// JavaScript Document
var xmlHttp;function showDivision(str)
{
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request");
return;
}
var url="division.php";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}function stateChanged()
{
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{
document.getElementById("txtDivision").innerHTML=xmlHttp.responseText;
}
}function GetXmlHttpObject()
{
var xmlHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
//Internet Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.