How to redirect to a Custom Page after adding a sharepoint list item in SharePoint 2013?
In SharePoint 2013, if you want to redirect to a specific custom page or Thank you Page after creating a list item or editing a list item. You need to add the below Jquery code in the NewForm.aspx or Editform.aspx. $(document).ready(function() { var button = $(“input[id$=SaveItem]”); // change redirection behavior button.removeAttr(“onclick”); button.click(function() { var […]