Здравствуйте, мне нужно чтобы после загрузки страницы все input'ы находящиеся на форме были неактивны, но что-то я делаю не правильно.
Вот форма:
<form method="post" action="add.php" class="orgform" id="addorgform">
<p><span>Добавить организацию</span></p>
<table id="tableaddupdate">
<tr>
<th class="thtree">
<div class="container" >
<div id="treeview"></div>
</div>
</th>
<th>
<div class="divinput">
<input type="text" class="MainID" name="MainID_Ref" id="mainaddorg" placeholder="MainID_Ref" style='display: none;'>
<input type="text" name="ParentType" placeholder="ParentType" style='display: none;'>
<input type="text" name="ObjectType" placeholder="ObjectType" style='display: none;'>
<input type="text" name="Name" placeholder="Name" id="Nameorgadd">
<input type="text" name="PrefixKod" placeholder="PrefixKod">
<input type="text" name="FTPServer" placeholder="FTPServer">
<input type="text" name="FTPUser" placeholder="FTPUser">
<input type="text" name="FTPPassword" placeholder="FTPPassword">
<input type="text" name="FTPPath" placeholder="FTPPath">
<input type="text" name="JurnalTemplate" placeholder="JurnalTemplate">
<input type="text" name="UnicStr" placeholder="UnicStr">
<input type="text" name="SendMessageUser" placeholder="SendMessageUser">
<input type="text" name="TName" placeholder="TName">
<input type="text" name="KodODU" placeholder="KodODU">
<input type="text" name="KodKPO" placeholder="KodKPO">
<input type="text" name="FTPPort" placeholder="FTPPort">
<input type="hidden" name="JurnalModification" value="<?php echo date ("Y-m-d H:i:s")?>">
<br/>
<br/>
<button id="btn" class="btnorg" type="submit" name="addOrg" value="">Добавить</button>
</div >
</th>
</tr>
</table>
</form>
Вот js:
window.onload=function(){
$('.orgform','input').attr("disabled", true);
}
Хелп.