Home › Forums › CSS › Replacing text by clicking a button › Re: Replacing text by clicking a button
October 22, 2012 at 1:05 am
#112381
Participant
@thejive Try this:
$(“.showtrue”).click(function() {
$(‘.false’).css(‘color’, ‘white’)
return false;
});