It may just be returning the TITLE element of the page. Try:
$("*[title]").each(blah);
EDIT: On testing, this will do what you want, but so will what you actually had, so it has to be something with your HTML. For reference, here's what I used:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Blah</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
var titles = $('*[title]');
alert(titles.length);
});
</script>
</head>
<body>
<a title="blah" href="#">blah</a>
<a title="blah" href="#">blah</a>
<a title="blah" href="#">blah</a>
<a title="blah" href="#">blah</a>
<a title="blah" href="#">blah</a>
</body>
</html>
Using just var titles = $('[title]'); returned 5 elements, as it should have.