Getting & Setting SharePoint Form Fields -Jquery(SharePoint)
Question 1: From where to download JQuery Base Library? Answer 1: http://code.jquery.com/jquery-1.7.2.min.js Question 2: How to include JQuery Script? Answer 2: Upload the JQuery base library to the Assets list and include the library using the below syntax <script type="text/javascript" src="../../Assets/jquery-1.7.2.min.js"></script> Question 3: What attribute to use for getting the INPUT object? Answer 3: We need to use the title attribute of the INPUT control <input name="ctl00$m$g_e2bcfa9c_6e16_4b44_9833_22e44201a72b$ctl00$ctl04$ctl03$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="255" id="ctl00_m_g_e2bcfa9c_6e16_4b44_9833_22e44201a72b_ctl00_ctl04_ctl03_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title=" Email " class="ms-long" /> Question 4: How to write JQuery function? Answer 4: <script type="text/javascript" src="../../Assets/jquery-1....