$(".stylebutton").each(function() {
$(this).click(function() {
var val = $(this).html();
alert(val);
$(this).css('background-color', 'red');
$(this).css('color','white');
});
});