top

Tuesday, 23 July 2013

Interactive adds in your S40 web app

Inneractive Ads 

To register in Inneractive follow this link. After receiving the email confirmation, login to inneractive and click Add App. Fill in all the information required and click Create. You will receive an App Id. This code is used to identify ad requests from your application and will be required later.
To add Inneractive ads to an app, open index.html and add the following after the div element with ui-content class.


<div id="ads" class="ui-ads">
 <div id="inneractiveads"></div>
        <script language="javascript" type="text/javascript" src="http://cdn2.inner-active.mobi/wv-js/inneractive_nokia_S40.js"></script>
 <script language="javascript" type="text/javascript">
  inneractive.parameters.divID = "inneractiveads";
  inneractive.parameters.appID = "YOUR_APP_ID_HERE";
  inneractive.displayInneractiveAd();
 </script>
</div>

No comments:

Post a Comment