[SOLVED] How to change selected list background color?

Hello
I have simple list view (Media list) and need to change background color of selected List Item, so I know which is selected.
How to do that, please?
Thank you.

OK solved:

		$('.contacts_list').on('click', 'li', function () {
			$(this).addClass('myClass').siblings().removeClass('myClass');
		})