The JavaScript loaded by pinit.js builds five different widgets, not just the Pin It button. If it's interfering with AJAX submissions, please check that it's being loaded only once, at the bottom of your page. (I am the author of the code and would love to know more about how we're breaking your page; is there an URL I can look at?)
The code the accepted answer uses probably won't work because the ampersands between the second and third arguments (media and description) have been converted to HTML entities.
Once the ampersands are fixed, the code in the accepted answer will result in the Pin It pop-up appearing in the main browser window, which is ugly, and will draw the user away from your page, which is really not what you want. Pinterest users know what the pop-up is supposed to look like and tend not to pin if it's wrong.
To duplicate the Pinterest experience, you should add the following inline JavaScript:
onclick="window.open(this.href, '_pinIt', 'status=no,resizable=yes,scrollbars=yes,personalbar=no,directories=no,location=no,toolbar=no,menubar=no,width=632,height=270,left=0,top=0');return false;"
I strongly recommend that you do NOT hand-whittle your URLs; they are brittle and will almost certainly break eventually. If you want something a bit more future-proof, you can try triggering the Pinterest bookmarklet code with JavaScript, just like our toolbar bookmarklet. That would look something like this:
<a style="cursor:pointer;" onclick="var d=document;var e=d.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','utf-8');e.setAttribute('src','//assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);d.body.appendChild(e);"><img src="//assets.pinterest.com/images/pidgets/pin_it_button.png" /></a>
Important: since pinit.js uses scheme-agnostic URLs, it will try to find things under file:// if you test by dragging HTML into your browser. Be sure you're running it on a server.