<?php ... ?>
лишнее. Нужно код обернуть в <script>...</script>
$
заменить на jQuery
<script>
jQuery('input[type="radio"]').click(function(){
jQuery(".color").text(jQuery(this).val());
});
</script>
.content ul li{
list-style: none;
}
.content ul li:before {
content: "•";
width: 7px;
height: 7px;
background-color: #d1bd7d;
-webkit-border-radius: 10px;
border-radius: 10px;
display: inline-block;
margin-right: 5px;
list-style: none;
}
$(function() { })
, или воспользуйтесь делегированием:$(document).on('change', 'input[type="radio"]', function() {
$('.color').text($(this).val());
});