So you’re using ShareThis. You say it doesn’t validate with the W3c? Of course it doesn’t. The validator complains about displayText and etc not being attributes? Check out this method. You’ll easily get by the W3C validator.
You are of course trading off display of the ShareThis widget if users have JavaScript turned off. Who exactly is this any way? The freaking web doesn’t roll or run without JavaScript.
<script type="text/javascript">
//<![CDATA[
var twitter = "<span class='st_twitter' displayText='Tweet'></span>";
var facebook = "<span class='st_facebook' displayText='Facebook'></span>";
var linkedin = "<span class='st_linkedin' displayText='LinkedIn'></span>";
var yahoo = "<span class='st_yahoo' displayText='Yahoo!'></span>";
var googlebuzz = "<span class='st_gbuzz' displayText='Google Buzz'></span>";
var email = "<span class='st_email' displayText='Email'></span>";
var sharethis = "<span class='st_sharethis' displayText='ShareThis'></span>";
document.write('<p>' + twitter + facebook + linkedin + yahoo + googlebuzz + email + sharethis + '</p>');
//]]>
</script>



