Does anyone know if I can use a different method of calling the page other than:
window.location.replace("step2.php?cat="+index+"&state="+current_state);
I really want to do a form submit, preferably using jQuery, eg:
javascript:document.ctl.H05.value='311';
document.ctl.cat="+index+";
document.ctl.state="+current_state”;
document.ctl.submit();
Do you know what the syntax would be for that?