Hello again
I have run into another problem while writing this.
I am refreshing a div using the following function
Code:
$(function() {
$("#refresh").click(function(evt) {
$(".tourwrapper").load("slidertour.php")
evt.preventDefault();
return false;
})
})
Here is the html
Code:
<li><a id="refresh" href="#">Back</a></li>
This seems to work well in all browsers other than IE (surprise).
I get a "SCRIPT257: Could not complete the operation due to error 80020101.
jquery-1.10.1.min.js, line 4 character 4961"
Any ideas?
Bookmarks