Dropdown Chicklets
Richard MacManus over at Read/Write Web ask me if there was a dropdown version of the chicklets generator. A little bit of code and here you are.
<div style="float:left;">
<span style="background-color: #f80;
border: 1px outset;
font-weight: bold;
color: white;
font-size: 12px;
padding: 0 0.4em;
text-decoration: none;
font-family: sans-serif;" onclick="chickletsclick();">Chicklets</span>
<script type="text/javascript">
function chickletsclick()
{
if (document.getElementById("kbchicklets").style.display == "inline")
{
document.getElementById("kbchicklets").style.display = "none"
return;
}
document.getElementById("kbchicklets").style.display = "inline";
}
</script>
<div id="kbchicklets" style="display:none;text-align:center;">
<script type="text/javascript" src="https://rssweblog.com/chicklet.aspx?rss=https://rssweblog.com/rss-feed"></script>
</div>
</div>
Don't forget to substitute the feed URL in the above code with your own. Feel free to modify the code to fit your need. For example, you might consider an icon other than the orange
one.Note: Doesn't work in Firefox. Shall fix later today!
Update: Works in Firefox now.
