The use of autocomplete inside a <TABLE> in not
working with Internet Explorer (working fine with firefox)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
strict.dtd">
<html>
<head>
<title>XMLHttpRequest Demo</title>
</head>
<body>
<table border=1>
<tr>
<td>
<h2>Live Search</h2>
<form action="#" method="post">
<div>
<script type="text/javascript"
src="liveUpdater.js"></script>
<link rel="stylesheet" type="text/css"
href="liveUpdater.css" media="all"/>
<br><br><br><br><br><br><br><br><br>
<input autocomplete="off" id="no_cp" value=""
type="text"/>
<div id="autocomplete-popup"
class="autocomplete"><span>blah</span></div>
<script type="text/javascript">
autocomplete('no_cp', 'autocomplete-
popup', 'autocomplete.xml')
</script><br>
<select>
<option>sdsds</option>
</select>
</div>
</form>
</td>
</tr>
</table>
</body>
</html>