try this:
$.get('http://digg.com/rss/index.xml', {}, callback, 'xml');
callback is the function you've already written.
what you've missed is the http://
part. I just added the 4th arg for a measure of safety, just in case the url does not return an appropriate MIME type.
Here Be Wolves
2010-01-01 13:12:40