1. How do you create a VARIABLE field that can be hyperlinked to the entire banner
E.g.: The variable field would be called “W_Field0” . The end user would input a URL value into the W_Field0 field E.g. http://www.myurl.com.
2. How would we insert the inputted variable field value into the body of the HTML
E.g.: if the inputted value for the W_Field0 is http://www.myurl.com , how would we display it in the format shown below in the HTML file.
<body style="margin:0;padding:0;">
<a href="http://www.myurl.com" target="_blank">
<div id="Stage" class="EDGE-********">
</div>
</a>
</body>
<script type="text/javascript">
var W_Field0 = 'http://www.myurl.com';
</script>
3. The inputted value should not be displayed in the Banner that is generated, it should just hyperlink to the URL, when the user clicks any spot on the banner.