Monday, October 5, 2015

How to disable save and Cancel button newform.aspx or editform.aspx SharePoint page in jQuery?

In this below script,get firstname and lastname and Current Date in Jquery

get firstname and lastname and Current Date in Jquery

<script type="text/javascript">
 $(document).ready(function() {

$("input[value='Save']").attr("disabled", true);
$("input[value='Cancel']").attr("disabled", true);
});
</Script>

No comments:

Post a Comment