Antonio Mailtraq
Antonio Mailtraq

Reputation: 1407

Javascript : Update browser Internet Explorer from 8 to 11

I have updated the browser Internet Explorer from 8 version to 11 version.

Now this javascript function not working.

Can you please help me figure out the problem?

Thanks in advance.

<script language="JavaScript">

function sSend() { 
document.form.submit()
} 

</script>
</head>

<body onLoad="sSend()">
<form method="POST" name="form" action="http://....">
    <input type="hidden" name="USER" value="<%=strUSER%>">   
    <input type="hidden" name="ID" value="<%=strID%>"> 
    <input type="hidden" name="referer" value="<%=strReferer%>">
</form>

Upvotes: 0

Views: 436

Answers (1)

Hamamelis
Hamamelis

Reputation: 2115

I think that your problem is not client side and not server side.

You log in to your web page using a favorite link?

Please try writing your web address on the address bar in the new browser and leave the favorite link.

Upvotes: 1

Related Questions