Question : Javascript to set an attribute value

I need help setting an attribute value that will remain persistant.  I set the value in javascript but it does not stay persistant.  Can I use some kind of variable in the attribute that is set by the javascript?  I hope I can otherwise I will have to either duplicate the code in multiple pages or create a custom control.  I would rather get around those alternatives.  I am trying to set the class attribute when the link is clicked to change the color of the menu.

class="makeCurrent('Default')" was something that I have tried but it gives me problems

Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:

 
 
 
 
function makeCurrent(current)
            {               
                var anchors = document.getElementsByTagName('a');
                var element, clsName, selectedElement;
                for (var j=0;j
           
Open in New Window Select All

Answer : Javascript to set an attribute value

Not with the onclick trying to use the cookie function.  What does seem to work until the page posts back is the code below.  What I have not figured out is how to keep the tab selected with the background color changed.  The css for the tab menu is below also.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
  function makeCurrent(current)
  {               
      var anchors = document.getElementsByTagName('a');
      var element, clsName, selectedElement;
      for (var j=0;j
           
Open in New Window Select All
Random Solutions  
 
programming4us programming4us