IE8 でこのコードの 5 行目に次のエラー "Objected Expected" が表示されます。コードは Firefox では機能しますが、開発中のブラウザーである IE 8 では機能しません。ありがとう。
<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>