I need to append an associate ID to the end of all links that go to a certain URL.
Here is what I have but I can't get it to work.
(this will be in WordPress)
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("a[href*=doitbest]").click(function() {
this.append("?memberid=5705&associate=true");
});
});
</script>
Any thoughts?