חיפוש בתמיכה

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

HTML Link (<a href)- wrong behaviour

  • 2 תגובות
  • 3 have this problem
  • 15 views
  • תגובה אחרונה מאת 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

פתרון נבחר

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!

Read this answer in context 👍 0

כל התגובות (2)

more options

פתרון נבחר

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!

השתנתה ב־ על־ידי Epicaleb

more options

Fair enough.

Thanks