|
|
Notify.me Affiliate ProgramFrom $1Table of contents
The basic way to get the badge (suits most people) is to use the code generator located at http://notify.me/affiliate. Essentially, it generates the following output:
<script type="text/javascript" src="http://static.notify.me/js/affiliate/button.js"></script>
<script>
var n = new NOTIFY.affiliate.Button();
n.addSourceURL(source_rss_url);
n.setImage('nm_2_100x35');
n.returnToURL(url_to_go_to);
n.writeHTML();
</script>
Just put this in your <head></head>: <script type="text/javascript" src="http://static.notify.me/js/affiliate/button.js"></script> Then, within your javascript code, have something like:
function recreateNotifyMeBadge( rss_url, return_to_url ) {
var n = new NOTIFY.affiliate.Button();
n.addSourceURL( rss_url );
n.setImage('nm_2_100x35');
n.returnToURL( return_to_url );
var html = n.getHTML();
document.getElementById('notify_me_badge').innerHTML = html;
}
... do important stuff ...
recreateNotifyMeBadge( 'http://search.twitter.com/search?q='+current_search, 'http://www.twitter.com' );
...
You can get a lot more fancy than that, but that's the jist of it. notify.me BadgesThe following badge images are what we currently have. Email us info@getorganyzd.com if you want a different size color.
Tags:
|