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

#112381
chrisburton
Participant

@thejive Try this:

$(“.showtrue”).click(function() {
$(‘.false’).css(‘color’, ‘white’)
return false;
});​