Javascript AJAX error in IE-unknown runtime error

Javascript AJAX causes unknown runtime error in IE javascript debugger for IE 7.x and 8.x.

I have this code that works perfectly in firefox but IE 7.x and 8.x has a problem:

function revDescr(condition_id, rev_cat_id) {
this.condition_id = condition_id;
this.rev_cat_id = rev_cat_id;

//update the reverse entry description
[...]

Jquery Ajax .load not working

Here is some code using JQuery’s .load:

The following code is not correctly displaying the information though:

function revDescr(condition_id, rev_cat_id) {
this.condition_id = condition_id;
this.rev_cat_id = rev_cat_id;

var pars = ‘condition_id=’+this.condition_id+’&rev_cat_id=’+this.rev_cat_id; //used by jQuery
$(“#reverse_content”).load(“updateRevDescrSi.php?”+pars);
}

Here is the comparable Ajax code using regular javascript [...]

javascript execute function php

Here’s a quick tutorial on how to execute javascript function within php coding:

<?php
$execute =

javascript include html file

A quick tutorial on how to add javascript include files to your html file.

<html>
<head>
<script type="text/javascript" src="./scripts/jsFunctions.js"></script>
</head>
<body>
</body>
</html>

Remember to add to WITHIN your <head> tags.

javascript include php

Here’s a quick tutorial on how to include or add javascript code in your php code:

<html>
<body>
<?php>
<script language="javascript" type="text/javascript">
<!–
function alert()
{
alert("I’m an alert box made from a javascript function.");
}
//–>
</script>
?>
</body>
<html>

Remember to make your tags in lower case to validate with W3C Strict.