Having upgraded from 4.1 to 5.0 I have come across an issue. I have a button that has an onclick event that should disable the button then redirect it to the supplied url, simple enough..
<ul class="nav_list">
<li class ="nav_list_entry" >
< button onclick ="redirectDisable(this,"f?p=101:MYLIST:3512108990321375:::::") type="button" enabled="" >Home</button>
</li >
The redirectDisbale function is below
function redirectDisable(f,url) {
f.disabled=true;
redirect(url);
}
This worked fine previously in Apex 4.2 what is the issue in APex 5.0? It like the url value to the redirect is somehow lost?
Thanks
IE 11 , no javascript error are reported and the page does not redirect to the url