Back to notify.me main site

Notify.me Affiliate Program

From $1

Table of contents
  1. 1. notify.me Badges

 

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 Badges

The following badge images are what we currently have.  Email us info@getorganyzd.com if you want a different size color.

nm_2_100x35


nm_100x35

n_black_58x58

n_black_32x32

n_black_16x16

n_white_58x58

n_white_32x32

n_white_16x16

 

Tags:
 
Images (0)
 
Comments (1)
Viewing 1 of 1 comments: view all
hello thankyou
Posted 18:14, 3 Oct 2009
Viewing 1 of 1 comments: view all
You must login to post a comment.