Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Mozilla Support में खोजें

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

i can click HTML a tag(anchor tag) even after disable.

  • 2 प्रत्युत्तर
  • 14
  • 7 views
  • के द्वारा अंतिम प्रतियुतर Jigarp

more options

i have applied a tag(HTML anchor tag) click on my page and now i have disabled a tag from the javascript , but still i can click on this and not gets disabled.

the problem with firefox only, in IE 8 it works fine.

Plz help on this.

i have applied a tag(HTML anchor tag) click on my page and now i have disabled a tag from the javascript , but still i can click on this and not gets disabled. the problem with firefox only, in IE 8 it works fine. Plz help on this.

All Replies (2)

more options

Can you post a link to a publicly accessible page that doesn't require authentication (signing on) or possibly post the code that you used?

more options
  • <a id="link1" onclick="alert('1');">SPT</a>
  • <a onclick="alert('2');">Basic Information</a>
  • <a onclick="alert('3');">Federal</a>

<asp:Button ID="Button1" runat="server" OnClientClick="disableControls();" Text="Disable links"/>

Script

function disableControls() {

           document.getElementById('link1').disabled = true;
       }


Above script code is for disabling anchor tag 'link1' on click of button1. I can still clik on link1 and get alert '1'.

thnx for the reply... cor-el