is it possible to change text color, size and font when highlighted im trying to see how i can do this without going through class and id will it be possible
all i need is the script i have the rest this is what i have for my script
$("#fs").change(function() {
//alert($(this).val());
$('.item1').css("font-family", $(this).val());
});
$("#size").change(function() {
$('.item1').css("font-size", $(this).val() + "px");
});
$('.foo').click(function(){
$('.item2').css("color", $(this).attr('data-color'));
});