Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

Buttons Not working since last update

more options

Since the last Firefox update yesterday, many buttons are not working that are using <a href> along with a button.

Since the last Firefox update yesterday, many buttons are not working that are using <a href> along with a button.

Все ответы (3)

more options

How can we reproduce this issue?

more options

1) https://www.bookmarketing.pro/publish-package.html 2) For the promo code enter anything and try to click the button. Nothing happens.

more options

If you put a <button> inside an <a href> link, clicking the button may activate the link and cancel the action of the button (because page navigation tends to cancel script actions). To avoid that, you usually include something like this in your <a href> tag:

onclick="return false;"

I haven't installed the new update yet, but I would be surprised if that stopped working.