Сообщение от Юсуф
|
условие js которое при нажатие на какое либо из этих li подставлял вот это class="current"
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
-->
<style type="text/css">
.current {
color: red;
}
</style>
<script type="text/javascript">
$(function (){
$('.tabs > li').click(function (){
$(this.parentNode).find('li').removeClass('current');
$(this).addClass('current');
});
});
</script>
</head>
<body>
<ul class="tabs">
<li >Русский</li>
<li >English</li>
</ul>
</body>
</html>