Problem Description:
Many times we want to
perform event handling on SharePoint list’s form.
This blog will give us
idea about “Choice” column value change event handling.
As usual add Content
Editor WebPart into SP list form and copy paste below code into HTML form.
<script
type="text/javascript">
_spBodyOnLoadFunctionNames.push("ourFunctionName");
function ourFunctionName()
{
$("Select[Title='ColumnName']").change(function () {
alert("Choice column value changed");
});
}
</script>
Reference:
Remark:
For Date and Time
column is quite different, for that follow below link,
Nice article written by Ruud Stijger.



