I have a problem with this.value in IE(7-9).
I use this code:
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$(".inputbox").keyup(function(){
value = this.value;
$("#searchRe").load("suggestionSearch.php?value=" + value);
});
});
</script>
This works in Firefox and Chrome, but don’t pass “value” to “suggestionSearch.php” in IE. I think value = this.value is problem. Please help me 🙂
NOTE: .inputbox is a textbox.
I’ve tried your code and seems to be working well;
And this is my php temporary code (since you haven’t specified yours)
Could you please give us more information? (what kind of data is returned from php file, for example)
Edit:
Replace this
with this one
please note the function encodeURIComponent, follow this link for more info.