I'm trying to get some specific URL's on a page, and add a parameter at the end of the link, but I'm not getting success as the object is returned instead of the link string + parameter.
I made a very simple example of the code:
var links = jQuery('a[href*="google.com.br"]');
links.attr('href', links + 'parametros_adicionais');
Running this code returns me the URL with this parameter at the end [object% 20Object] test
Can you help me?