Цей вебсайт матиме обмежену функціональність, доки ми проводимо його обслуговування для поліпшення роботи. Якщо прочитана стаття не розв'язала вашу проблему і ви хочете поставити питання, наша спільнота підтримки з радістю допоможе вам на @FirefoxSupport у Twitter та /r/firefox на Reddit.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

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

  • 2 відповіді
  • 14 мають цю проблему
  • 7 переглядів
  • Остання відповідь від 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.

Усі відповіді (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