Change Link Colors : Hyper Link : HTML : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  HTML   » [  Hyper Link  ]   
 



Change Link Colors

Please note that some example is only working under IE or Firefox.

/*
Javascript Essentials
by Jason J. Manger

Publisher: Mcgraw-Hill Osborne Media; 

ISBN: 0078822343
*/

<!--
  Program 2-8
-->
<html>
<head>
<script language="JavaScript">
<!--
function changeLinkColors() {
  var dateToday = new Date();
  var dayToday  = dateToday.getDay();
  var linkText  = "here";
  var theUrl    = "";
  if (dayToday == 0) { document.linkColor = "Yellow" // Sun
  if (dayToday == 1) { document.linkColor = "Aqua"   // Mon
  if (dayToday == 2) { document.linkColor = "White"  // Tue
  if (dayToday == 3) { document.linkColor = "Red"    // Wed
  if (dayToday == 4) { document.linkColor = "Blue"   // Thu
  if (dayToday == 5) { document.linkColor = "Green"  // Fri
  if (dayToday == 6) { document.linkColor = "Black"  // Sat
}
changeLinkColors();
//-->
</script>
</head>
<body>
<basefont size=4>
If it is a Sunday, <a href="http://www.java2s.com">this</a> link will be
colored <font color="Yellow">Yellow</font>.
</body>
</html>


           
       
Related examples in the same category
1.  Specifies the output device for the object
2.  Link Methods
3.  Link 'href' Example
4.  Link 'hreflang' Example
5.  Link color
6.  Link protocol
7.  Link 'port'
8.  Link 'title' Example
9.  Link type
10.  Link host
11.  Link host name
12.  'aLink' Example
13.  'hideFocus' Example
14.  'vLink' Example
15.  'vlinkColor' Example
16.  'alinkColor' Example
17.  Inserts a link on a text, a picture, a button or a dynamic pictureHas Download File
18.  Mouse over an hyper link
19.  Get link infomation in a paragraph
20.  Validate Link
21.  Output link
22.  Illustrate how a URL can be referenced
23.  Call function in hyper link
24.  Passing Form Value In URLHas Download File
25.  Using JavaScript linkTo Entities
26.  Prevent the browser from following the link
27.  Redirect user depending on browser
28.  Location: Send the client to a new location (URL/page)
29.  URL of a document
30.  Change URL and text of a hyperlink
31.  Change the target attribute of a link
32.  Link focus() and blur()
33.  View and change the action URL of a form
34.  List the links in a page
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.