<a href="http://www.google.com" rel="external" title="Link to Google">Google</a>
Can you clarify, please? When you say 'title' I got the impression you were referring to <title>blah</title> ?
<h2 title="Hello There!">Titled Heading Tag</h2>
No, you can't I'm afraid. Title is an HTML attribute, not an element.
<html>
<body>
<script language="JavaScript">
function titleChange (obj)
{
obj.title="new title here!";
}
function titleChange2 (obj2)
{
obj2.title="default title here!"
}
</script>
<a href="#" title="default title here!" onMouseOver="titleChange(this)" onMouseOut="titleChange2(this)">link</a>
</body>
</html>
theMAD2 said:So I guess the only way to achieve the box would be some sort of javascript?
BaJ said:Wave a bit of DOM magic over them .... Sweet Titles.
I can't quite see that website could he make it larger and give it a worse colour scheme please?BaJ said:Wave a bit of DOM magic over them .... Sweet Titles.
Yep, but as we all are often heard to say, 'content is king', and Dustin Diaz has excellent content. Read his stuff on the YahooUI libraries and javascript in generalBeansprout said:I can't quite see that website could he make it larger and give it a worse colour scheme please?
His content is great so far, I'll read moreAugmented said:Yep, but as we all are often heard to say, 'content is king', and Dustin Diaz has excellent content. Read his stuff on the YahooUI libraries and javascript in general.