שינוי צבע כותרת בקליק | Toggle title color on click
HTML Code
Press this title to toggle it's color:
Hello There
CSS Code
.main_title{
cursor:pointer;
}
.red{
color:#F00;
}
JS / jQuery Code
$(".main_title").click(function(){
$(this).toggleClass("red");
});
PHP Code
Code Results:
Press this title to toggle it's color: