Ответ 1
Попробуйте следующее:
DEMO
HTML:
<fieldset id="form">
<legend>Personalia:</legend>
Name: <input type="text" /><br />
Email: <input type="text" /><br />
Date of birth: <input type="text" />
<input id="btn1" type="button" value="See More (Enable this!!) " onclick="ButtonClicked1()" />
Somethingelse: <input type="text" />
<input type="button" value="View Details " onclick="ButtonClicked2()"/>
</fieldset>
SCRIPT:
$('#form :input').prop('disabled', true);
$("#btn1").prop('disabled', false);