Hello all,
I have figured out how to use the page view increment in a details page, but I wanted to update a counter on submission and don't see a similar element for selection. Can this be done with a script? I'm not much of a programmer, and had tried the following:
<SCRIPT LANGUAGE="JavaScript">
function count()
{
var i = parseFloat(document.getElementById("Count").value);
i=i+1;
document.getElementById("Count").value = i
}
document.getElementById("Countsubmission").onsubmit=calculate;
</SCRIPT>
Any help would be appreciated!