joomla - Add javascript action to all links on a webpage -


good morning, know if possible add automaticalliy javascript action links (or classes) on webpage, example wanna add following javascript action: "playflashsound();", links on web page should be:

<a onmouseover="playflashsound();" href="#">link text</a>" 

the problem adding manually javascript action i'm using joomla, , don't know how it.

thanks.

with jquery this.

$(document).ready(function() {      $('a').click(function() {          playflashsound();          return false      });  }); 

Comments

Popular posts from this blog

python - Does anyone know how to configure the hunpos wrapper class on nltk? -

mysql - How to insert just year and month into date field? -