In IE 6, attr('href') on an anchor return complete URL in place of the attribute.
Tested on
IE 6.0
Firefox 1.5/2.0
Opera 9.02
Safari 2.0.4
Example
Click Me
$("#link").click( function() { var a = $(this).attr('href'); alert( a ); });