To Access SharePoint fields in JQuery
By default we can access by
$("input[title='title name']")
or
$("input[VALUE='OK']") // for OK button
If we modify to Sharepoint List form field
See the source of the form and find out the ID in SPD.
Example $("#[id*='ff2_1']") // 2nd field.
By default we can access by
$("input[title='title name']")
or
$("input[VALUE='OK']") // for OK button
If we modify to Sharepoint List form field
See the source of the form and find out the ID in SPD.
Example $("#[id*='ff2_1']") // 2nd field.
No comments:
Post a Comment