Hi there, just checking my site through the W3C validator, it seams to be coming up with 2 javascript errors, i've checked through the coding and the error seams to be coming from the 'Twitter' widgit I have on the page (see below)the error marked in bold is whats coming up as wrong, can anyone help?
Thanks, James.
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 3,
interval: 6000,
width: 325,
height: 100,
theme: {
shell: {
background: '#333333',
color: '#ffaa00'
},
tweets: {
background: '#000000',
color: '#ff9900',
links: '#c7c7c7'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('furiousdesigns').start();
</script>
.............................................................
Line 117, Column 94: required attribute "type" not specified
…48" valign="top"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
Line 118, Column 22: required attribute "type" not specified
<script>
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.