Search 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

Wannan tattunawa ta zama daɗaɗɗiya. Yi sabuwar tambaya idan ka na bukatar taimako.

HTML Link (<a href)- wrong behaviour

  • 2 amsoshi
  • 3 sa na da wannan matsala
  • 10 views
  • Amsa ta ƙarshe daga goncalofbg

more options

Hello,

This simple code

<a href="javascript:$('.div-feedback').fadeIn();">

doesn't work in my newest version of firefox 29.0.1. it works on chrome just fine as it should.

rather than interpret as javascript, it reads as an url (opens the page "javascript:$('.div-feedback').fadeIn();" which is wrong of course)

Do you have an idea why?

Thank you Gonçalo

Hello, This simple code <a href="javascript:$('.div-feedback').fadeIn();"> doesn't work in my newest version of firefox 29.0.1. it works on chrome just fine as it should. rather than interpret as javascript, it reads as an url (opens the page "javascript:$('.div-feedback').fadeIn();" which is wrong of course) Do you have an idea why? Thank you Gonçalo

Mafitar da aka zaɓa

Actually, the href attribute is supposed to direct the browser to a new URL, etc., not run a script. Instead, use the onclick event attribute:

   <a onclick = “$('.div-feedback').fadeIn();”></a>.

Happy coding!

Karanta wannan amsa a matsayinta 👍 0

All Replies (2)

more options

Zaɓi Mafita

Actually, the href attribute is supposed to direct the browser to a new URL, etc., not run a script. Instead, use the onclick event attribute:

   <a onclick = “$('.div-feedback').fadeIn();”></a>.

Happy coding!

An gyara daga Epicaleb

more options

Fair enough.

Thanks