<button id="aka">テキストをブルー&大きく変更</button>
<div id="target">ここの文字色が変わるよ!</div>
body{
text-align: center;
}
$(function(){
$('#aka').on('click',function(){
$('#target').css({'color':'blue','font-size':'20px'});
})
})
Also see: Tab Triggers