Hello,
I set the following tag for cross domain auto linking with anchor parameter.
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
ga('create', 'UA-6-1', 'auto', {'allowLinker': true, 'allowAnchor': true});
ga('require', 'linker');
ga('send', 'pageview');
</script>
However the form link will be with query parameter like
http://example.com/?ga=..., when I clicked the above "Submit" button.
Is there a way to enable cross domain auto linking for forms with "anchor parameter"?
Thanks in advance,