On a campaign page (if enough users have joint) it shows a " Show More... " link. When I click on it, it goes to an almost empty page containing a empty head tag and a body tag containing only '[object Object]'. Which means the link 'goes' to what is put in and not 'does' what is put in. Therefore you could replace 'href=' with 'onclick=' in '<a class="showmorelink" href="j...' OR if you want to keep the 'href' add 'void(0)' at the end. (like: <a class="showmorelink" href="javascript:$(".showmore").show();$(".showmorelink").hide();void(0);") (I tried both in 'firefox developer tools'/'firebug' and it solves the problem)