Are you a US publisher? If not, please visit the buttons page for your market.

Welcome, new publishers! Find a button below that works best with your site design, then click "Get Code". Check out "Advanced Button Options" at the bottom of the page for more button configurations, and read our Publisher FAQs if you have any questions.

Important! You must replace the word ARTICLEURL in the code with the URL of the page you want to submit to Yahoo! Buzz.

Buttons with Vote Count

“Vote Now” only appears until there is at least 1 vote.

  • Square Button

    99,999
    votes

    (51x82px)

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="square">
    	ARTICLEURL
    </script>
    
    Select Code
  • Icon with Text Link, Styled by Page Context

    Buzz up! (99,999)

    (16x16px logo and the text 'Buzz up!')

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="text-votes">
    	ARTICLEURL
    </script>
    
    Select Code
  • Small Rectangular Button

    99,999 votes

    (159x22px)

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="small-votes">
    	ARTICLEURL
    </script>
    
    Select Code
  • Medium Rectangular Button

    99,999 votes

    (182x27px)

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="medium-votes">
    	ARTICLEURL
    </script>
    
    Select Code
  • Large Rectangular Button

    99,999 votes

    (203x33px)

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="large-votes">
    	ARTICLEURL
    </script>
    
    Select Code

Buttons without Vote Count

  • Icon with Text Link

    Buzz up!

    (16x16px logo and the text 'Buzz up!')

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="text">
    	ARTICLEURL
    </script>
    
    Select Code
  • Small Rectangular Button

    (74x22px)

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="small">
    	ARTICLEURL
    </script>
    
    Select Code
  • Medium Rectangular Button

    (91x27px)

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="medium">
    	ARTICLEURL
    </script>
    
    Select Code
  • Large Rectangular Button

    (109x33px)

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="large">
    	ARTICLEURL
    </script>
    
    Select Code

Classic "on Yahoo!" Buttons

  • Small Rectangular Button

    on Yahoo!

    (74x32px)

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="small"
    	showbranding="1">
    	ARTICLEURL
    </script>
    
    Select Code
  • Medium Rectangular Button

    on Yahoo!

    (91x37px)

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="medium"
    	showbranding="1">
    	ARTICLEURL
    </script>
    
    Select Code
  • Large Rectangular Button

    on Yahoo!

    (109x43px)

    Get Code

    Copy and paste the code into your website to add Yahoo! Buzz.

    <script type="text/javascript"
    	src="http://d.yimg.com/ds/badge2.js"
    	badgetype="large"
    	showbranding="1">
    	ARTICLEURL
    </script>
    
    Select Code

Advanced Button Options

The above code is the simplest way to get the Yahoo! Buzz button on your site. With just a little extra work, you can make the button "smarter", so it passes valuable information about your story to the Buzz system during the submission process. Please note, the following information is submitted to Buzz during the first vote only. After that, pressing the button will simply register more votes.

Important! If you add any of the elements below, you should place them between a <script></script> block before the button code detailed in the above sections.

Optional Elements

To provide a story’s headline upon submission:yahooBuzzArticleHeadline = "Enter Story Headline Here"

To provide a story’s summary upon submission:yahooBuzzArticleSummary = "Enter Story Summary Here"

To provide a story’s category upon submission:yahooBuzzArticleCategory = "Enter Story Category Here"

where "Enter Story Category Here" must be one of the following: business, entertainment, health, images, lifestyle, news, politics, science, sports, travel, video, world

To provide a story’s media type upon submission:yahooBuzzArticleType = "Enter Media Type Here"

where "Enter Media Type Here" must be one of the following: audio, image, text, video

Finally, to automatically pull the URL associated with the page where the button lives upon submission:yahooBuzzArticleId = window.location.href

and be sure to remove ARTICLEURL from the code

Example

Here is an example of the Large Rectangular Button (with Vote Count), and all of the above optional elements:

<script type="text/javascript">
    yahooBuzzArticleHeadline = "Yahoo! Buzz is now open!";
    yahooBuzzArticleSummary = "Welcome new publishers.";
    yahooBuzzArticleCategory = "business";
    yahooBuzzArticleType = "text";
    yahooBuzzArticleId = window.location.href;
</script>

<script type="text/javascript"
    src="http://d.yimg.com/ds/badge2.js"
    badgetype="large-votes">
</script>
Select Code