0
Good morning, you guys...
How can I run a Servlet opening in a popup and passing 1 parameter ? My code is like this : - On the page called
<form name="frmcadentidade" method="get" action="DetalheEntidade">
<input type='submit' id='btncnes' onclick='abrirConsulta()'
value='CONSULTAR'></input>
</form>
function abrirConsulta(){
window.open ('servlets/DetalheEntidade.java', 'pagina',
"width=250 height=250 left=400 top=250");
}
In case, the parameter I want to pass is another value for that button.
But where the popup setting fits ?
– Ninja2112