Forum Moderators: open
<a href="http://www.example.com/">Home</a>
<a href="http://www.example.net/">.NET</a>
<a href="http://www.webmasterworld.com">WebmasterWorld</a>
Then you would like some JavaScript that will style the 2nd and 3rd links differently?
Essentially, you'll need to:
1. Get all of the link elements on the page
2. Compare each href value to see if it matches the current domain
3. If it does not, add a class to the link (like "external")
Then in your CSS you would have whatever styles you wanted defined for the "external" class.