modify href adding a final text on click [SOLVED]

modify href adding a final text on click [SOLVED]

  1. $("a.approfondimento").click(function () {
  2. });
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