Сообщение от alexmixaylov
|
// эта конструкция не работает $('#infoaddress').removeAttr("disabled");
|
Бивас, тест! (с)
<!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 (){
$('#off').click(function (){
$('input').attr('disabled',true);
});
$('#on').click(function (){
$('input').removeAttr('disabled');
});
});
</script>
</head>
<body>
<div>
<input type='text' />
<input type='button' value='test' />
</div>
<button id='off'>off</button>
<button id='on'>on</button>
</body>
</html>
Таки работает!