I’m working in adding an onclick
attribute to a few links on my drupal 7 site. I added the menu_attributes
module to assign an id to my links, tried adding the following code to a new js file I included in sites/themes/themeName.info
.
function() {
var link = document.getElementById('conversion');
//link.setAttribute("target", "_blank");
link.addEventListener("click", function(e){
return gtag_report_conversion('http://www.mysite/page’); }); }
It’s not adding onclick, would greatly appreciate any help.