Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Replacing text by clicking a button Re: Replacing text by clicking a button

#112395
ideaprison
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();
});