02-24-2008, 05:26 AM
|
#7 (permalink)
|
|
The Contributor
Join Date: Jan 2008
Location: Brazil
Posts: 77
Thanks: 14
|
Found the error
Code:
xmlHttp.onreadystatechange=function(IdKey) {
Just erase that IdKey that's inside the brackets, make it like this:
Code:
xmlHttp.onreadystatechange=function() {
|
|
|