Chuck, sure thing. At the end of my auto submission page (after </html> tag), I have the following javascript code submitting my form. Somewhere along the way, I decided on a 15 second interval, rather than 5 seconds.
<script type="text/javascript">
<!--
// we have to pause to allow time for the supporting scripts to load, so we'll set a 15 second interval before a form submit
setInterval(function(){document.forms["frmWebCapture"].submit()},15000);
//-->
</script>
I don't know if this zendesk forum will allow javascript, so if the above code doesn't read clearly, will try posting again a different way.
There are other challenges with getting forms to submit. The customer I am supporting has Joomla and Wordpress sites (both of which are PHP-based, running on a Linux server) auto-sending these forms to ClickDimensions. It's been a painful process, ClickD doesn't provide much support for this, and I've actually had to go way around the block to make it work reliably. There are still things about it that I wish were different. Happy to share what I know.