vote up 0 vote down star

I have an html page which has a link called "open". Once the link is clicked the text "open" should change to "close". How do I do this?

flag

4 Answers

vote up 1 vote down check

Script

<html>
  <head>
    <script type="text/javascript">
      function open_fun() {
        document.getElementById('link').innerHTML = "<a href='javascript:clo_fun()'>CLOSE</a>";
      }
      function clo_fun() {
        document.getElementById('link').innerHTML = "<a href='javascript:open_fun()'>OPEN</a>";
      }
    </script>
  </head>
  <body>
    <div id='link'><a href='javascript:open_fun()'>OPEN</a></div>
  </body>
</html>
link|flag
Satish, the above code is not working. Wats the below code do, <a href='close()'>close</a>.. Why u are using "close()", what does it do? – i2ijeya Nov 9 at 10:07
first of all: inline javascript is a bad idea. second: using href to do javascript is even worse. bad, bad solution. – peirix Nov 9 at 10:13
First time i gave a idea thats all. I dint tell to add script tag inline. Here is my edited script. – sathish Nov 9 at 10:31
Now u can try this, i2ijeya – sathish Nov 9 at 10:32
Thank you satish, This is working well. thanks and thanks for everyone for their valuable comments and answers... – i2ijeya Nov 9 at 10:38
vote up 0 vote down

If elm is the link:

elm.addEventListener("click", function(){
  this.innerHTML = "close";
}, true);
link|flag
Con you be clear with the answer in detail. – i2ijeya Nov 9 at 10:00
Will this work cross-browser? – Russ Cam Nov 9 at 10:03
no, this will not work cross-browser. attachEvent is IE's method of attaching events, addEventListener works in all others as far as I'm aware – jaywon Nov 9 at 10:20
vote up 4 vote down
<a href="" onClick="javascript:this.innerHTML = 'close'">Open</a>

You could also call some type of toggle function for swapping the text on multiple clicks.

function toggle(lnk_obj){
    lnk_obj.innerHTML = (lnk_obj.innerHTML == 'close') ? 'open' : 'close' ;
}


<a href="" onClick="javascript:toggle(this);">Open</a>
link|flag
whers the href?? – i2ijeya Nov 9 at 10:11
1  
there's no need to specify javascript with onclick events. <a onclick="this.innerHTML ... is sufficient. – peirix Nov 9 at 10:12
But the hypher link doesn't appears for the above code?? – i2ijeya Nov 9 at 10:13
@i2ijeya - that was just a basic example, i figured you could edit the HTML to suit your needs. i added href="" to the example – jaywon Nov 9 at 10:16
vote up 1 vote down

addEventListener is not supported in IE. If you don't need other onclick events on the link, use this:

elm.onclick = function (e) {
    this.innerHTML = "close";
};
link|flag
Wats 'e' in the above code? – i2ijeya Nov 9 at 10:14
InnerHTML is evil. It is better to use nodeValue. – silent Nov 9 at 10:20
@i2ijeya: e is the default parameter that is given to event-handling functions in FF, Opera and WebKit based browsers, an Event object. @silent: It is evil, but it is also foolproof. Using nodeValue involves testing if a firstChild exists. – Boldewyn Nov 9 at 10:24
You can, by the way call the 'e' whatever you like. Most tutorials go with 'event' here. – Boldewyn Nov 9 at 10:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.