Hi there, I created few step order form. I use function below to move to the next step of order, but at the same time when customer press button it shoudl called function: onClick="takeDetalis(0)" in js sheet and take personal detalis. But because (0) is treated as error.
<script type="text/javascript">
<!--
function takeOrder(num) {
var url=new Array();
url[0]="confirm.html";
window.location=url[num];
}
// -->
</script>
So any idea how to take detalis and automatically move order to the next stage (page) ??