I have a form being submitted by JS, but doesn't work in Safari (though no error is produced). Here is the code:
<script>
function goto() {
var f;
f = document.frm12;
f.sectionid.value = 29;
f.submit();
}
</script>
<form method='post' action=' name='frm12'>
<input type='hidden' name='sectionid' value='' />
Click <a href='javascript:goto()'>here</a> to view list of merchants with similar products.</form>
<script>
function goto() {
var f;
f = document.frm12;
f.sectionid.value = 29;
f.submit();
}
</script>
<form method='post' action=' name='frm12'>
<input type='hidden' name='sectionid' value='' />
Click <a href='javascript:goto()'>here</a> to view list of merchants with similar products.</form>