Сообщение от Viral
|
"Все <a></a>, кроме <a></a> с классом "класс""
|
Или вобщем случае так...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(document).ready(function(){
$('a').filter(':not(a[class*="on"])').css('color','red');
});
</script>
</head>
<body>
<a href='#'>Item 1</a>
<a href='#' class='on'>Item 2</a>
<a href='#' class='test on'>Item 3</a>
<a href='#' class='tmp'>Item 4</a>
</body>
</html>