<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>p51 Labs &#187; Javascript</title>
	<atom:link href="http://www.p51labs.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.p51labs.com</link>
	<description>Ideas. Experiments. Interests.</description>
	<lastBuildDate>Mon, 16 Nov 2009 04:48:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Simply-Buttons v2</title>
		<link>http://www.p51labs.com/simply-buttons-v2/</link>
		<comments>http://www.p51labs.com/simply-buttons-v2/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 08:36:32 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://www.p51labs.com/?p=184</guid>
		<description><![CDATA[<p>The new version of Simply-Buttons is out!   Now framework independent and with more options to customize them.   Why have ordinary inputs on your site that look and behave differently in every browser when you deserve better?   Get clean, crisp, consistent 3 state buttons for your site.  </p>
]]></description>
			<content:encoded><![CDATA[<div class="demo-box"><iframe width="100%" scrolling="no" height="100%" frameborder="0" src="/projects/buttons/generic.php"></iframe></div>
<p><strong>TESTED</strong> IE6 IE7 FF(PC/MAC) Safari SafariMobile Opera(PC/MAC)</p>
<h3>Background</h3>
<p>I had some time a while back and read a few interesting articles on buttons:</p>
<ul class="styled-list">
<li><a href="http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html">How to make sexy buttons with CSS</a></li>
<li><a href="http://particletree.com/features/rediscovering-the-button-element/">Rediscovering the Button Element</a></li>
</ul>
<p>These got me thinking&#8230; these techniques are pretty nice, but I think they can meet somewhere in the middle and make something even better, after all the button tag was created to make really nice buttons for your sites (<a target="_blank" href="http://www.w3.org/TR/html401/interact/forms.html#h-17.5">W3 Button Element</a>).   After a little work I came up with the &#8220;Simply-Buttons Technique&#8221;.</p>
<h3>Benefits</h3>
<ul class="styled-list">
<li>Buttons size to fit text.</li>
<li>There are 3 states: Inactive, Active, and Hover.</li>
<li>They look and behave the same way in every browser and operating system.</li>
<li>The do not need the javascript to work, they work with just the css</li>
<li>Way better looking buttons than what anyone else can do with XHTML/CSS, isn&#8217;t that reason enough?!</li>
</ul>
<h3>How it Works</h3>
<p>The markup is pretty simple, as you can see below.   The thing to notice here is that both the button and link tags each have a nested-nested span tag.</p>
<p><pre class="brush: xhtml">
&lt;button&gt;
  &lt;span&gt;&lt;span&gt;Button&lt;/span&gt;&lt;/span&gt;
&lt;/button&gt; 

&lt;a class=&quot;button&quot;&gt;
  &lt;span&gt;&lt;span&gt;Button&lt;/span&gt;&lt;/span&gt;
&lt;/a&gt;
</pre>
</p>
<p>Now there are two parts involved here, the first thing to know here is that this method will work with just CSS.   However it works a little better with some Javascript enhancements.   Let&#8217;s take a look:</p>
<h4>Generic (no javascript)</h4>
<div class="demo-box"><iframe width="100%" scrolling="no" height="100%" frameborder="0" src="/projects/buttons/generic.php?nojs=true"></iframe></div>
<p>Now we see the buttons load nicely here, we are using the <a href="http://alistapart.com/articles/slidingdoors/">Sliding Doors Technique</a>.   The caveats are:</p>
<ul class="styled-list">
<li>There are outlines on the buttons.</li>
<li>The text is selectable.</li>
<li>These buttons are not mobile friendly (the button tag).</li>
</ul>
<h3>The Solution</h3>
<p>In comes the the Simply-Buttons Javascript component.   The library solves the caveats above as you can see below:</p>
<h4>YouTube Style (w/ javascript)</h4>
<div class="demo-box"><iframe width="100%" scrolling="no" height="100%" frameborder="0" src="/projects/buttons/youtube.php"></iframe></div>
<p>Below is the object you can configure to further customize the buttons to suite your design.</p>
<pre class="brush: javascript">

  options : {
    hyperlinkClass : &#039;button&#039; // &#039;a&#039; tags with this class will be processed
    ,activeButtonClass : &#039;button_active&#039; // Active class for active buttons
    ,states : { // The various states and css properties, define them as normal
      outer : {
        active : {
          backgroundPosition : &#039;bottom left&#039;
        }
        ,inactive : {
          backgroundPosition : &#039;top left&#039;
        }
      }
      ,inner : {
        active : {
          backgroundPosition : &#039;bottom right&#039;
        }
        ,inactive : {
          backgroundPosition : &#039;top right&#039;
        }
      }
    }
    ,iphone : {
      replaceButtons : true // if iPhone; replace buttons with inputs?
    }
  }
</pre>
<h3>Download the Code/Sample</h3>
<p>Below you can download not only the core CSS and Javascript files but you also will get a few samples.   I am not the greatest at tutorials so I will update this post as feedback comes in, however there are quite a few comments throughout the files.   The important files are: stylesheets/buttons.css, javascripts/simply-buttons-v2.js.</p>
<ul class="styled-list">
<li><a href="/projects/buttons/simply-buttons-v2.zip">Download Simply Buttons v2 (zip)</a></li>
</ul>
<h3>Installation</h3>
<p>Simply include the stylesheet and javascript and make sure they can find your images.   Then simple call the init function, either using the default options as below or configuring it as show above.</p>
<p><pre class="brush: xhtml">
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;stylesheets/SimplyButtons.css&quot; media=&quot;screen&quot; /&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;javascripts/SimplyButtons.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
  window.onload = function()
  {
    SimplyButtons.init();
  };
&lt;/script&gt;
</pre>
</p>
<h3>Customize</h3>
<p>
As shown in the YouTube example, you can easily modify the buttons look and feel.   You can do this by creating your own stylesheet and you can use the one supplied as an example, its filled with comments.   There are also options that can be changed and configured on the javascript end as show above.</p>
<p><strong>SUPPORT: </strong><a href="#respond">Feedback</a> and <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9509039" target="_blank">Donations</a> help to support this Plugin and future development.</p>



Spread the Word


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;title=Simply-Buttons%20v2&amp;bodytext=The%20new%20version%20of%20Simply-Buttons%20is%20out%21%20%20%20Now%20framework%20independent%20and%20with%20more%20options%20to%20customize%20them.%20%20%20Why%20have%20ordinary%20inputs%20on%20your%20site%20that%20look%20and%20behave%20differently%20in%20every%20browser%20when%20you%20deserve%20better%3F%20%20%20Get%20clean%2C%20crisp%2C%20consistent%203%20state%20buttons%20for%20your%20site.%20%20%0D%0A" title="Digg"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;title=Simply-Buttons%20v2&amp;notes=The%20new%20version%20of%20Simply-Buttons%20is%20out%21%20%20%20Now%20framework%20independent%20and%20with%20more%20options%20to%20customize%20them.%20%20%20Why%20have%20ordinary%20inputs%20on%20your%20site%20that%20look%20and%20behave%20differently%20in%20every%20browser%20when%20you%20deserve%20better%3F%20%20%20Get%20clean%2C%20crisp%2C%20consistent%203%20state%20buttons%20for%20your%20site.%20%20%0D%0A" title="del.icio.us"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;t=Simply-Buttons%20v2" title="Facebook"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;title=Simply-Buttons%20v2&amp;annotation=The%20new%20version%20of%20Simply-Buttons%20is%20out%21%20%20%20Now%20framework%20independent%20and%20with%20more%20options%20to%20customize%20them.%20%20%20Why%20have%20ordinary%20inputs%20on%20your%20site%20that%20look%20and%20behave%20differently%20in%20every%20browser%20when%20you%20deserve%20better%3F%20%20%20Get%20clean%2C%20crisp%2C%20consistent%203%20state%20buttons%20for%20your%20site.%20%20%0D%0A" title="Google Bookmarks"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;title=Simply-Buttons%20v2" title="DZone"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;title=Simply-Buttons%20v2&amp;source=p51+Labs+Ideas.+Experiments.+Interests.&amp;summary=The%20new%20version%20of%20Simply-Buttons%20is%20out%21%20%20%20Now%20framework%20independent%20and%20with%20more%20options%20to%20customize%20them.%20%20%20Why%20have%20ordinary%20inputs%20on%20your%20site%20that%20look%20and%20behave%20differently%20in%20every%20browser%20when%20you%20deserve%20better%3F%20%20%20Get%20clean%2C%20crisp%2C%20consistent%203%20state%20buttons%20for%20your%20site.%20%20%0D%0A" title="LinkedIn"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;h=Simply-Buttons%20v2" title="NewsVine"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;title=Simply-Buttons%20v2" title="Reddit"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;Title=Simply-Buttons%20v2" title="BlinkList"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;title=Simply-Buttons%20v2" title="StumbleUpon"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F" title="Technorati"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F&amp;submitHeadline=Simply-Buttons%20v2&amp;submitSummary=The%20new%20version%20of%20Simply-Buttons%20is%20out%21%20%20%20Now%20framework%20independent%20and%20with%20more%20options%20to%20customize%20them.%20%20%20Why%20have%20ordinary%20inputs%20on%20your%20site%20that%20look%20and%20behave%20differently%20in%20every%20browser%20when%20you%20deserve%20better%3F%20%20%20Get%20clean%2C%20crisp%2C%20consistent%203%20state%20buttons%20for%20your%20site.%20%20%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-v2%2F" title="Propeller"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>


<br/><br/><ul class="related_post"><li><a href="http://www.p51labs.com/simply-buttons-technique/" title="Simply-Buttons Technique">Simply-Buttons Technique</a></li><li><a href="http://www.p51labs.com/upgraded-typography-with-sifr3/" title="Upgraded Typography with sIFR3">Upgraded Typography with sIFR3</a></li><li><a href="http://www.p51labs.com/wordpress-additions-pagination/" title="WP Additions &#8211; Pagination">WP Additions &#8211; Pagination</a></li><li><a href="http://www.p51labs.com/holy-grail/" title="Holy Grail Layout">Holy Grail Layout</a></li><li><a href="http://www.p51labs.com/free-yes-radio-api/" title="Free YES Radio API">Free YES Radio API</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.p51labs.com/simply-buttons-v2/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
		<item>
		<title>WP Additions &#8211; Pagination</title>
		<link>http://www.p51labs.com/wordpress-additions-pagination/</link>
		<comments>http://www.p51labs.com/wordpress-additions-pagination/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 10:49:35 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.p51labs.com/?p=165</guid>
		<description><![CDATA[<p>Pagination in the <a href="wordpress.org">Wordpress</a> Administration has always been a bit tedious when you have hundreds if not thousands of rows to go through.   This is no longer an issue, the <em>WP Additions - </em><em>Pagination</em> plugin converts the pagination for a variety of panels (posts, pages, comments, users) to an ajax pagination slider.   This slider allows you to easily and quickly scroll your posts for example, getting right to what you want without the fuss.</p>]]></description>
			<content:encoded><![CDATA[<p>I am happy to announce the release of the first of many plugins coming soon for wordpress, <em>WP Additions &#8211; Pagination</em>!   The <em>WP Additions </em>plugins will be a series of <a href="wordpress.org">Wordpress</a> plugins designed to improve and extend what <a href="wordpress.org">Wordpress</a> already does.   The <em>Pagination</em> plugin is the first, and a useful one too.</p>
<p>Pagination in the <a href="wordpress.org">Wordpress</a> Administration has always been a bit tedious when you have hundreds if not thousands of rows to go through.   This is no longer an issue, the <em>WP Additions &#8211; </em><em>Pagination</em> plugin converts the pagination for a variety of panels (posts, pages, comments, users) to an ajax pagination slider.   This slider allows you to easily and quickly scroll your posts for example, getting right to what you want without the fuss.    Below is a screenshot of what the new pagination looks like.</p>
<div class="wp-caption aligncenter" style="width: 441px"><img title="WP Addtions - Pagination Slider Screenshot" src="/images/screenshot-1.jpg" alt="WP Addtions - Pagination Slider Screenshot" width="431" height="160" /><p class="wp-caption-text">WP Addtions - Pagination Slider Screenshot</p></div>
<p><br class="spacer_" /></p>
<ul class="styled-list">
<li><a href="http://wordpress.org/extend/plugins/wp-additions-pagination/">Download <em>WP Additions &#8211; Pagination </em></a> via <a href="http://wordpress.org/extend/plugins/">Wordpress</a> </li>
</ul>
<p><strong>Questions and/or Comments?</strong></p>
<p>Please post your questions and comments below for now and I will get to them as quickly as I can.</p>
<p><strong>SUPPORT: </strong><a href="#respond">Feedback</a> and <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9509039" target="_blank">Donations</a> help to support this Plugin and future development.</p>



Spread the Word


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;title=WP%20Additions%20-%20Pagination&amp;bodytext=Pagination%20in%20the%20Wordpress%20Administration%20has%20always%20been%20a%20bit%20tedious%20when%20you%20have%20hundreds%20if%20not%20thousands%20of%20rows%20to%20go%20through.%C2%A0%C2%A0%20This%20is%20no%20longer%20an%20issue%2C%20the%20WP%20Additions%20-%20Pagination%20plugin%20converts%20the%20pagination%20for%20a%20variety%20of%20panels%20%28posts%2C%20pages%2C%20comments%2C%20users%29%20to%20an%20ajax%20pagination%20slider.%C2%A0%C2%A0%20This%20slider%20allows%20you%20to%20easily%20and%20quickly%20scroll%20your%20posts%20for%20example%2C%20getting%20right%20to%20what%20you%20want%20without%20the%20fuss." title="Digg"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;title=WP%20Additions%20-%20Pagination&amp;notes=Pagination%20in%20the%20Wordpress%20Administration%20has%20always%20been%20a%20bit%20tedious%20when%20you%20have%20hundreds%20if%20not%20thousands%20of%20rows%20to%20go%20through.%C2%A0%C2%A0%20This%20is%20no%20longer%20an%20issue%2C%20the%20WP%20Additions%20-%20Pagination%20plugin%20converts%20the%20pagination%20for%20a%20variety%20of%20panels%20%28posts%2C%20pages%2C%20comments%2C%20users%29%20to%20an%20ajax%20pagination%20slider.%C2%A0%C2%A0%20This%20slider%20allows%20you%20to%20easily%20and%20quickly%20scroll%20your%20posts%20for%20example%2C%20getting%20right%20to%20what%20you%20want%20without%20the%20fuss." title="del.icio.us"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;t=WP%20Additions%20-%20Pagination" title="Facebook"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;title=WP%20Additions%20-%20Pagination&amp;annotation=Pagination%20in%20the%20Wordpress%20Administration%20has%20always%20been%20a%20bit%20tedious%20when%20you%20have%20hundreds%20if%20not%20thousands%20of%20rows%20to%20go%20through.%C2%A0%C2%A0%20This%20is%20no%20longer%20an%20issue%2C%20the%20WP%20Additions%20-%20Pagination%20plugin%20converts%20the%20pagination%20for%20a%20variety%20of%20panels%20%28posts%2C%20pages%2C%20comments%2C%20users%29%20to%20an%20ajax%20pagination%20slider.%C2%A0%C2%A0%20This%20slider%20allows%20you%20to%20easily%20and%20quickly%20scroll%20your%20posts%20for%20example%2C%20getting%20right%20to%20what%20you%20want%20without%20the%20fuss." title="Google Bookmarks"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;title=WP%20Additions%20-%20Pagination" title="DZone"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;title=WP%20Additions%20-%20Pagination&amp;source=p51+Labs+Ideas.+Experiments.+Interests.&amp;summary=Pagination%20in%20the%20Wordpress%20Administration%20has%20always%20been%20a%20bit%20tedious%20when%20you%20have%20hundreds%20if%20not%20thousands%20of%20rows%20to%20go%20through.%C2%A0%C2%A0%20This%20is%20no%20longer%20an%20issue%2C%20the%20WP%20Additions%20-%20Pagination%20plugin%20converts%20the%20pagination%20for%20a%20variety%20of%20panels%20%28posts%2C%20pages%2C%20comments%2C%20users%29%20to%20an%20ajax%20pagination%20slider.%C2%A0%C2%A0%20This%20slider%20allows%20you%20to%20easily%20and%20quickly%20scroll%20your%20posts%20for%20example%2C%20getting%20right%20to%20what%20you%20want%20without%20the%20fuss." title="LinkedIn"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;h=WP%20Additions%20-%20Pagination" title="NewsVine"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;title=WP%20Additions%20-%20Pagination" title="Reddit"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;Title=WP%20Additions%20-%20Pagination" title="BlinkList"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;title=WP%20Additions%20-%20Pagination" title="StumbleUpon"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F" title="Technorati"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F&amp;submitHeadline=WP%20Additions%20-%20Pagination&amp;submitSummary=Pagination%20in%20the%20Wordpress%20Administration%20has%20always%20been%20a%20bit%20tedious%20when%20you%20have%20hundreds%20if%20not%20thousands%20of%20rows%20to%20go%20through.%C2%A0%C2%A0%20This%20is%20no%20longer%20an%20issue%2C%20the%20WP%20Additions%20-%20Pagination%20plugin%20converts%20the%20pagination%20for%20a%20variety%20of%20panels%20%28posts%2C%20pages%2C%20comments%2C%20users%29%20to%20an%20ajax%20pagination%20slider.%C2%A0%C2%A0%20This%20slider%20allows%20you%20to%20easily%20and%20quickly%20scroll%20your%20posts%20for%20example%2C%20getting%20right%20to%20what%20you%20want%20without%20the%20fuss.&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fwww.p51labs.com%2Fwordpress-additions-pagination%2F" title="Propeller"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>


<br/><br/><ul class="related_post"><li><a href="http://www.p51labs.com/simply-buttons-v2/" title="Simply-Buttons v2">Simply-Buttons v2</a></li><li><a href="http://www.p51labs.com/upgraded-typography-with-sifr3/" title="Upgraded Typography with sIFR3">Upgraded Typography with sIFR3</a></li><li><a href="http://www.p51labs.com/simply-buttons-technique/" title="Simply-Buttons Technique">Simply-Buttons Technique</a></li><li><a href="http://www.p51labs.com/free-yes-radio-api/" title="Free YES Radio API">Free YES Radio API</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.p51labs.com/wordpress-additions-pagination/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Upgraded Typography with sIFR3</title>
		<link>http://www.p51labs.com/upgraded-typography-with-sifr3/</link>
		<comments>http://www.p51labs.com/upgraded-typography-with-sifr3/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 10:16:38 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Experiments]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[sIFR]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.p51labs.com/?p=133</guid>
		<description><![CDATA[<p>
If you haven't noticed all of the typography on this site looks a little nicer, a little more 'Aliased'.</p>
]]></description>
			<content:encoded><![CDATA[<p>
I work from day to day on a mac.   That being said, web pages look much better on my screen than say on a windows machine.   Well the other day I saw my site on a windows machine&#8230; what a horrid pixelated mess the type is on Windows XP.   That being said I upgraded much of the typography on the site with <a href="http://wiki.novemberborn.net/sifr3">sIFR3</a>, I am not sure if this is how it will end up but for now I think it works rather well.</p>



Spread the Word


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;title=Upgraded%20Typography%20with%20sIFR3&amp;bodytext=%0D%0AIf%20you%20haven%27t%20noticed%20all%20of%20the%20typography%20on%20this%20site%20looks%20a%20little%20nicer%2C%20a%20little%20more%20%27Aliased%27.%0D%0A" title="Digg"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;title=Upgraded%20Typography%20with%20sIFR3&amp;notes=%0D%0AIf%20you%20haven%27t%20noticed%20all%20of%20the%20typography%20on%20this%20site%20looks%20a%20little%20nicer%2C%20a%20little%20more%20%27Aliased%27.%0D%0A" title="del.icio.us"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;t=Upgraded%20Typography%20with%20sIFR3" title="Facebook"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;title=Upgraded%20Typography%20with%20sIFR3&amp;annotation=%0D%0AIf%20you%20haven%27t%20noticed%20all%20of%20the%20typography%20on%20this%20site%20looks%20a%20little%20nicer%2C%20a%20little%20more%20%27Aliased%27.%0D%0A" title="Google Bookmarks"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;title=Upgraded%20Typography%20with%20sIFR3" title="DZone"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;title=Upgraded%20Typography%20with%20sIFR3&amp;source=p51+Labs+Ideas.+Experiments.+Interests.&amp;summary=%0D%0AIf%20you%20haven%27t%20noticed%20all%20of%20the%20typography%20on%20this%20site%20looks%20a%20little%20nicer%2C%20a%20little%20more%20%27Aliased%27.%0D%0A" title="LinkedIn"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;h=Upgraded%20Typography%20with%20sIFR3" title="NewsVine"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;title=Upgraded%20Typography%20with%20sIFR3" title="Reddit"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;Title=Upgraded%20Typography%20with%20sIFR3" title="BlinkList"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;title=Upgraded%20Typography%20with%20sIFR3" title="StumbleUpon"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F" title="Technorati"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F&amp;submitHeadline=Upgraded%20Typography%20with%20sIFR3&amp;submitSummary=%0D%0AIf%20you%20haven%27t%20noticed%20all%20of%20the%20typography%20on%20this%20site%20looks%20a%20little%20nicer%2C%20a%20little%20more%20%27Aliased%27.%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fwww.p51labs.com%2Fupgraded-typography-with-sifr3%2F" title="Propeller"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>


<br/><br/><ul class="related_post"><li><a href="http://www.p51labs.com/simply-buttons-v2/" title="Simply-Buttons v2">Simply-Buttons v2</a></li><li><a href="http://www.p51labs.com/simply-buttons-technique/" title="Simply-Buttons Technique">Simply-Buttons Technique</a></li><li><a href="http://www.p51labs.com/wordpress-additions-pagination/" title="WP Additions &#8211; Pagination">WP Additions &#8211; Pagination</a></li><li><a href="http://www.p51labs.com/yes-television-widget/" title="YES Television Widget">YES Television Widget</a></li><li><a href="http://www.p51labs.com/holy-grail/" title="Holy Grail Layout">Holy Grail Layout</a></li><li><a href="http://www.p51labs.com/free-yes-radio-api/" title="Free YES Radio API">Free YES Radio API</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.p51labs.com/upgraded-typography-with-sifr3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Simply-Buttons Technique</title>
		<link>http://www.p51labs.com/simply-buttons-technique/</link>
		<comments>http://www.p51labs.com/simply-buttons-technique/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 01:12:57 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Experiments]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://localhost.com/?p=1</guid>
		<description><![CDATA[<p>Re-Rediscovering the Button Tag.   Taking another look we see that not only can we style the link element to mimic a nice button, but the button element as well.   With buttons that look and behave this good, why even think of using an input tag!</p>
]]></description>
			<content:encoded><![CDATA[<p>
<strong>UPDATE!</strong> Version 2 is out, <a href="/simply-buttons-v2">check it out &raquo;</a>.
</p>
<p>
<strong>TESTED</strong> IE6 IE7 FF(PC/MAC) Safari SafariMobile Opera(PC/MAC)
</p>
<h3>Background</h3>
<p>
So I have decided to share a button technique I have been using for awhile with the public.   I had some time a while back and read a few interesting articles on buttons:
</p>
<ul class="styled-list">
<li><a href="http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html">How to make sexy buttons with CSS</a></li>
<li><a href="http://particletree.com/features/rediscovering-the-button-element/">Rediscovering the Button Element</a></li>
</ul>
<p>
These got me thinking&#8230; these techniques are pretty nice, but I think they can meet somewhere in the middle and make something even better.   After a little work I came up with the &#8220;Simply Buttons Technique&#8221;.
</p>
<h3>How it Works</h3>
<p>
The markup is pretty simple, as you can see below.   The thing to notice here is that both the button and link tags each have a nested-nested span tag (&#8230;say that 3 times fast!).
</p>
<pre class="brush: xhtml">
&lt;button type=&quot;button&quot; value=&quot;Button&quot;&gt;
  &lt;span&gt;&lt;span&gt;Button&lt;/span&gt;&lt;/span&gt;
&lt;/button&gt;

&lt;a class=&quot;button&quot;&gt;
  &lt;span&gt;&lt;span&gt;Button&lt;/span&gt;&lt;/span&gt;
&lt;/a&gt;
</pre>
<p>
Now there are two parts involved here, the first thing to know here is that this method will work with just CSS.   However it works a little better with some Javascript enhancements.   Let&#8217;s take a look:
</p>
<h4>Generic (no javascript)</h4>
<div class="demo-box">
<iframe src="/projects/buttons/generic.php?nojs=true" frameborder="0" scrolling="no" width="100%" height="100%"></iframe>
</div>
<h4>YouTube Style (no javascript)</h4>
<div class="demo-box">
<iframe src="/projects/buttons/youtube.php?nojs=true" frameborder="0" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p>
Now we see the buttons load nicely here, we are using the <a href="http://alistapart.com/articles/slidingdoors/">Sliding Doors Technique</a>.   The caveats are:
</p>
<ul class="styled-list">
<li>There are outlines on the buttons.</li>
<li>The text is selectable.</li>
<li>These buttons are not mobile friendly (the button tag).</li>
</ul>
<h3>The Solution</h3>
<p>
In comes the the Simply Buttons Javascript component.   It is currently written using the <a href="http://prototypejs.org">Prototype</a> framework.   I will be writing a version that is framework independent soon, but this works just as well.   The library solves the caveats above as you can see below:
</p>
<h4>Generic (w/ javascript)</h4>
<div class="demo-box">
<iframe src="/projects/buttons/generic.php" frameborder="0" scrolling="no" width="100%" height="100%"></iframe>
</div>
<h4>YouTube Style (w/ javascript)</h4>
<div class="demo-box">
<iframe src="/projects/buttons/youtube.php" frameborder="0" scrolling="no" width="100%" height="100%"></iframe>
</div>
<p>
Below is the object you can configure to further customize the buttons to suite your design.
</p>
<pre class="brush: javascript">
this.options = Object.extend({
  hyperlinkSelector: &#039;a.button&#039;,
  activeButtonClass: &#039;button_active&#039;,
  states: {
    outer: {
      active: {
        backgroundPosition: &#039;bottom left&#039;
      },
      inactive: {
        backgroundPosition: &#039;top left&#039;
      }
    },
    inner: {
      active: {
        backgroundPosition: &#039;bottom right&#039;
      },
      inactive: {
        backgroundPosition: &#039;top right&#039;
      }
    }
  }
}, options || {});
</pre>
<h3>Download the Code/Sample</h3>
<p>
Below you can download not only the core CSS and Javascript files but you also will get a few samples.   I am not the greatest at tutorials so I will update this post as feedback comes in, however there are quite a few comments throughout the files.   The important files are: stylesheets/buttons.css, javascripts/buttons.js.
</p>
<ul class="styled-list">
<li><a href="/projects/buttons/simply-buttons.zip">Download Simply Buttons (zip)</a></li>
</ul>
<h3>Thoughts</h3>
<p>
I will be updating the Javascript in the weeks to come with a version that is not framework dependent.   Other than that I would love to hear thoughts, suggestions, or even new takes on this technique.   Let&#8217;s bring the button back!
</p>
<p>
<strong>NOTE</strong> To see this button style in action, check out the <a href="/contact">Contact Page</a>.</p>



Spread the Word


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;title=Simply-Buttons%20Technique&amp;bodytext=Re-Rediscovering%20the%20Button%20Tag.%20%20%20Taking%20another%20look%20we%20see%20that%20not%20only%20can%20we%20style%20the%20link%20element%20to%20mimic%20a%20nice%20button%2C%20but%20the%20button%20element%20as%20well.%20%20%20With%20buttons%20that%20look%20and%20behave%20this%20good%2C%20why%20even%20think%20of%20using%20an%20input%20tag%21%0D%0A" title="Digg"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;title=Simply-Buttons%20Technique&amp;notes=Re-Rediscovering%20the%20Button%20Tag.%20%20%20Taking%20another%20look%20we%20see%20that%20not%20only%20can%20we%20style%20the%20link%20element%20to%20mimic%20a%20nice%20button%2C%20but%20the%20button%20element%20as%20well.%20%20%20With%20buttons%20that%20look%20and%20behave%20this%20good%2C%20why%20even%20think%20of%20using%20an%20input%20tag%21%0D%0A" title="del.icio.us"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;t=Simply-Buttons%20Technique" title="Facebook"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;title=Simply-Buttons%20Technique&amp;annotation=Re-Rediscovering%20the%20Button%20Tag.%20%20%20Taking%20another%20look%20we%20see%20that%20not%20only%20can%20we%20style%20the%20link%20element%20to%20mimic%20a%20nice%20button%2C%20but%20the%20button%20element%20as%20well.%20%20%20With%20buttons%20that%20look%20and%20behave%20this%20good%2C%20why%20even%20think%20of%20using%20an%20input%20tag%21%0D%0A" title="Google Bookmarks"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;title=Simply-Buttons%20Technique" title="DZone"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;title=Simply-Buttons%20Technique&amp;source=p51+Labs+Ideas.+Experiments.+Interests.&amp;summary=Re-Rediscovering%20the%20Button%20Tag.%20%20%20Taking%20another%20look%20we%20see%20that%20not%20only%20can%20we%20style%20the%20link%20element%20to%20mimic%20a%20nice%20button%2C%20but%20the%20button%20element%20as%20well.%20%20%20With%20buttons%20that%20look%20and%20behave%20this%20good%2C%20why%20even%20think%20of%20using%20an%20input%20tag%21%0D%0A" title="LinkedIn"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;h=Simply-Buttons%20Technique" title="NewsVine"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;title=Simply-Buttons%20Technique" title="Reddit"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;Title=Simply-Buttons%20Technique" title="BlinkList"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;title=Simply-Buttons%20Technique" title="StumbleUpon"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F" title="Technorati"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F&amp;submitHeadline=Simply-Buttons%20Technique&amp;submitSummary=Re-Rediscovering%20the%20Button%20Tag.%20%20%20Taking%20another%20look%20we%20see%20that%20not%20only%20can%20we%20style%20the%20link%20element%20to%20mimic%20a%20nice%20button%2C%20but%20the%20button%20element%20as%20well.%20%20%20With%20buttons%20that%20look%20and%20behave%20this%20good%2C%20why%20even%20think%20of%20using%20an%20input%20tag%21%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fwww.p51labs.com%2Fsimply-buttons-technique%2F" title="Propeller"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>


<br/><br/><ul class="related_post"><li><a href="http://www.p51labs.com/simply-buttons-v2/" title="Simply-Buttons v2">Simply-Buttons v2</a></li><li><a href="http://www.p51labs.com/upgraded-typography-with-sifr3/" title="Upgraded Typography with sIFR3">Upgraded Typography with sIFR3</a></li><li><a href="http://www.p51labs.com/wordpress-additions-pagination/" title="WP Additions &#8211; Pagination">WP Additions &#8211; Pagination</a></li><li><a href="http://www.p51labs.com/holy-grail/" title="Holy Grail Layout">Holy Grail Layout</a></li><li><a href="http://www.p51labs.com/free-yes-radio-api/" title="Free YES Radio API">Free YES Radio API</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.p51labs.com/simply-buttons-technique/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Free YES Radio API</title>
		<link>http://www.p51labs.com/free-yes-radio-api/</link>
		<comments>http://www.p51labs.com/free-yes-radio-api/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 09:35:23 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.p51labs.com/?p=115</guid>
		<description><![CDATA[<p>
Jeremie Miller has been hard at work over at YES.com.   He has created something really special here, it's an api (JSON/XML) that allows you to get real-time information about <strong>actual physical</strong> Radio Stations.</p>
]]></description>
			<content:encoded><![CDATA[<p>
Jeremie Miller has been hard at work over at <a href="http://api.yes.com">YES.com API</a>.   He has created something really special here, it&#8217;s an api (JSON/XML) that allows you to get real-time information about <strong>actual physical</strong> Radio Stations.   Everything from the current song, to logs, charts, download links, artist &#038; song information and a whole lot more.
</p>
<p>
&#8230;and its <strong>FREE!</strong>
</p>
<p>
This is pretty nice, and really opens up a whole new realm of possible applications for the web.   Especially with the <a href="http://developer.mtvnservices.com/">MTV API</a> that is available now.   Stay tuned to this blog for some widgets/applications being launched soon using this new api.    In the meantime you can check out the new YES widget that uses this api.
</p>
<ul class="styled-list">
<li><a href="http://new.yes.com/">New YES.com (Widget uses new YES.com API)</a></li>
</ul>



Spread the Word


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;title=Free%20YES%20Radio%20API&amp;bodytext=%0D%0AJeremie%20Miller%20has%20been%20hard%20at%20work%20over%20at%20YES.com.%20%20%20He%20has%20created%20something%20really%20special%20here%2C%20it%27s%20an%20api%20%28JSON%2FXML%29%20that%20allows%20you%20to%20get%20real-time%20information%20about%20actual%20physical%20Radio%20Stations.%0D%0A" title="Digg"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;title=Free%20YES%20Radio%20API&amp;notes=%0D%0AJeremie%20Miller%20has%20been%20hard%20at%20work%20over%20at%20YES.com.%20%20%20He%20has%20created%20something%20really%20special%20here%2C%20it%27s%20an%20api%20%28JSON%2FXML%29%20that%20allows%20you%20to%20get%20real-time%20information%20about%20actual%20physical%20Radio%20Stations.%0D%0A" title="del.icio.us"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;t=Free%20YES%20Radio%20API" title="Facebook"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;title=Free%20YES%20Radio%20API&amp;annotation=%0D%0AJeremie%20Miller%20has%20been%20hard%20at%20work%20over%20at%20YES.com.%20%20%20He%20has%20created%20something%20really%20special%20here%2C%20it%27s%20an%20api%20%28JSON%2FXML%29%20that%20allows%20you%20to%20get%20real-time%20information%20about%20actual%20physical%20Radio%20Stations.%0D%0A" title="Google Bookmarks"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;title=Free%20YES%20Radio%20API" title="DZone"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;title=Free%20YES%20Radio%20API&amp;source=p51+Labs+Ideas.+Experiments.+Interests.&amp;summary=%0D%0AJeremie%20Miller%20has%20been%20hard%20at%20work%20over%20at%20YES.com.%20%20%20He%20has%20created%20something%20really%20special%20here%2C%20it%27s%20an%20api%20%28JSON%2FXML%29%20that%20allows%20you%20to%20get%20real-time%20information%20about%20actual%20physical%20Radio%20Stations.%0D%0A" title="LinkedIn"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;h=Free%20YES%20Radio%20API" title="NewsVine"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;title=Free%20YES%20Radio%20API" title="Reddit"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;Title=Free%20YES%20Radio%20API" title="BlinkList"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;title=Free%20YES%20Radio%20API" title="StumbleUpon"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F" title="Technorati"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F&amp;submitHeadline=Free%20YES%20Radio%20API&amp;submitSummary=%0D%0AJeremie%20Miller%20has%20been%20hard%20at%20work%20over%20at%20YES.com.%20%20%20He%20has%20created%20something%20really%20special%20here%2C%20it%27s%20an%20api%20%28JSON%2FXML%29%20that%20allows%20you%20to%20get%20real-time%20information%20about%20actual%20physical%20Radio%20Stations.%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fwww.p51labs.com%2Ffree-yes-radio-api%2F" title="Propeller"><img src="http://www.p51labs.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>


<br/><br/><ul class="related_post"><li><a href="http://www.p51labs.com/yes-api-php-wrapper/" title="YES API PHP Wrapper">YES API PHP Wrapper</a></li><li><a href="http://www.p51labs.com/simply-buttons-v2/" title="Simply-Buttons v2">Simply-Buttons v2</a></li><li><a href="http://www.p51labs.com/wordpress-additions-pagination/" title="WP Additions &#8211; Pagination">WP Additions &#8211; Pagination</a></li><li><a href="http://www.p51labs.com/yes-television-widget/" title="YES Television Widget">YES Television Widget</a></li><li><a href="http://www.p51labs.com/upgraded-typography-with-sifr3/" title="Upgraded Typography with sIFR3">Upgraded Typography with sIFR3</a></li><li><a href="http://www.p51labs.com/simply-buttons-technique/" title="Simply-Buttons Technique">Simply-Buttons Technique</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.p51labs.com/free-yes-radio-api/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
