modify href adding a final text on click [SOLVED]
- $("a.approfondimento").click(function () {
- });
I need to add ?format=bbbb at the end of my href with .approfondimento with class
example:
<a href="content/asd">aaaa</a> onclick: <a href="content/asd?format=bbbb">aaaa</a>
how i can make this?
thx