Pode how would I go about representing the following div with your plugin:
<div id="myAd" style="position: absolute; top: 53px; left: 0px; width: 250px; height: 250px; z-index: 1"
data-win-control="MicrosoftNSJS.Advertising.AdControl"
data-win-options="{applicationId: 'd25517cb-12d4-4699-8bdc-52040c712cab', adUnitId: '10043105'}">
</div>
My assumption is that I would put everything in the "" after style= into the style property of the control. so for example I would paste:
position: absolute; top: 53px; left: 0px; width: 250px; height: 250px; z-index: 1
And then in the inner html property I would paste:
data-win-control="MicrosoftNSJS.Advertising.AdControl"
data-win-options="{applicationId: 'd25517cb-12d4-4699-8bdc-52040c712cab', adUnitId: '10043105'}"
Is that right? I am trying to use this to display the Microsoft Pubcenter ads in the div control...