Сообщение от cha0s
|
она только после загрузки страницы там появляется... ну так вот вопрос как изменить этот width после этой погрузки?
|
Да так и применить...
<!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'>
$(function (){
$('button').click(function (){
$('#principal > table').css('width','200px');
});
});
</script>
</head>
<body>
<form id="principal" name="principal" method="post" action="">
<table border="1" cellpadding="5" cellspacing="0" width="180px" style="background-color: #fff; border-bottom: 0px solid #fff;">
<td>..................</td>
</table>
</form>
<button>Test</button>
</body>
</html>