Home › Forums › CSS › Replacing text by clicking a button › Re: Replacing text by clicking a button
October 22, 2012 at 9:11 am
#112395
Participant
Instead of the href=”javascript:void(0)” since its icky and shows when people hover the link you should just use
example:
$(“a”).click(function (e) {
e.preventDefault();
});