Сообщение от smart-create
|
Простые методы не помогают:
$('.class').css('width', '10px');
Они сотрут color:red;.
|
Бивас, тест! (с)
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='https://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
p {
border: 1px solid
}
</style>
<script type='text/javascript'>
$(function(){
$('p').css('width', '100px');
});
</script>
</head>
<body>
<p style='color: red;'>Test</p>
</body>
</html>
Таки все работает...