hi,
i developed one application using
struts , i have tested it with Firefox ad IE i works verry well but i have got problem with google chrome,
the problem is that : whene i click on one button i excpect that the rattched javascipt function submit first oen form then redirect me to another link, but under google chrome , the form isn't submitted (for Firefox and IE no problem)
the function
function cll()
{this.document.forms["myform"].submit();
var p=document.getElementById('myLink').href;
location.href =p;
}
the form :
<form id="myform" action="urlt0.do" method="post">
<html:hidden name="urlt0" property="url_page_t0" value=""/>
</form>