Friday, March 25, 2011

OopSoup

I recently finished the beta of my website http://www.oopsoup.com .  So far I have had a few unique visitors from around the continental US, Mexico, and Alaska also.  It's actually kind of a fun site if you like taking random things from your kitchen and creating a soup out of them.  That's really what it's about.  Sharing the "bachelor" soups, that contain everything from Top Ramen bits to peanut butter.  Good times. :)

Registration & Membership is completely free.

Here's one of my soups -

Thursday, November 4, 2010

Making Wordpress RSS Links open in a new window without editing a file.

Well, I looked around the net and didn't find anything, so I wrote something instead in javascript.  This will allow wordpress RSS feeds to open in a new window instead of the same window of a wordpress site.  I put it in a text widget that is recurring through the website.
 <script type="text/javascript">
function getcrawling()
{
pagecrawl = document.getElementById('page');
acrawl = pagecrawl.getElementsByTagName("a");
for (j=0;j<acrawl.length;j++)
{
if (acrawl[j].className == "rsswidget")
{acrawl[j].target = '_blank';}
}
}
window.onload = getcrawling;
</script>