I've made an ajax search form that brings up results onkeyup, that works well.
To remove the results if someone clicks anywhere on the page outside the results list i've used currentTarget on a transparent fullscreen div at the top of the page to clear the results.
It works perfectly in ff, ie9, chrome, safari & opera. But when trying it in ie 7 and ie 8 it shows the results but won't remove them. The console is returning this:
SCRIPT5007: Unable to get value of the property 'id': object is null or undefined
Any ideas what this could be. I've search for bugs online but it didn't bring anything I could work out.
function searchRemove(event)
{
var x=event.currentTarget;
if(x.id!="search")
{
document.getElementById("close-result").innerHTML="";
document.getElementById("search-results").innerHTML="";
}
}