Google Reader is shutting down in July

No! Say it isn’t so, Google. Google will be shutting down Google Reader on July 1st. You can read Google’s official announcement post here. I’m saddened by this news as I’ve been using Google Reader for a while now and it is my main source to keep all of the sites I want to stay up-to-date with in one place and now I will have to find another RSS reader.

Luckily there’s a good article I found that lists out web and desktop alternative RSS readers. Make sure to check out LifeHacker’s Google Reader Is Shutting Down; Here Are the Best Alternatives.

I’ve signed up for NetVibes and I’m liking it so far. If you’re a Google Reader user and will be switching to another RSS reader, what service are you switching to?

Select all checkboxes with jQuery

So you have a form on your web site and you want to add a way for a user to select all checkboxes for one of your questions in the form. Here’s an easy way to do just that using jQuery. Use the Javascript and HTML code below.

Javascript code with the function that will make this work:

<script type="text/javascript">
function checkAllBoxes(status) {
    $(".checkboxClass").attr("checked",status);
}
</script>

HTML code for the link to select all checkboxes:

<a style="text-decoration:underline;cursor:pointer;" onclick="checkAllBoxes(status);">Select all</a>

HTML code for the checkboxes:

<input type="checkbox" name="chkOption1" value="1" class="checkboxClass" />1
<input type="checkbox" name="chkOption2" value="2" class="checkboxClass" />2
<input type="checkbox" name="chkOption3" value="3" class="checkboxClass" />3

Remember that the checkbox’s class have to all be the same for those checkboxes that you want to check with the function. In this example the class is “checkboxClass”.

Hello world!

Yup, hello everyone! This is the first post on my blog here at The Web Dev Life. I already have a blog over at Blogger that I’ve had for years, where I’ve posted about anything I’m interested in, but with this blog, I’m hoping to use it for posting about web development. I may post tips, questions, things I’ve learned, info about related books and sites that can help others and more.

You can find me on Twitter @BostonianAdam.