Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

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

  • 2 Antworten
  • 14 haben dieses Problem
  • 7 Aufrufe
  • Letzte Antwort von 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.

Alle Antworten (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