How to change background color with jquery
change background color with jquery is easy you just need to change body css on an event. You can change the background color of any content just replace the body with your content name.
HTML
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<a href="#" id="red" value="0">Red</a>
<a href="#" id="green" value="0">Green</a>
<a href="#" id="blue">Blue</a>
JavaScript
$(document).ready(function(){
$('#red').click(function(){
alert($(this).prop("value"));
});
});