I get the following error "Objected Expected" on line 5 of this code in IE8, the code works in Firefox but not IE 8 which is the browser I am developing for. Thanks.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script language="javascript">
$(document).ready(function(){
if($('#DialogFinalMessage > div').html().length>0){
window.location.href = "<Desired destination page URL>"
}
});
</script>
<doctype>, the<html>etc..? Or is it only in this bit of code line 5?$('#DialogFinalMessage > div').html()will returnnull/undefinedif it did not find any elements matching the selector. Check if any elements were found before trying to get their source.