JavaScript on click of Finish Button in Survey – SharePoint

Posted: June 30, 2009 in MOSS, SharePoint
Tags:

Hi,

We had created a survey and wanted some message to appear when user clicks on finish button.

Through one of my colleague i came to know about this function — PreSaveAction

function PreSaveAction()
{
alert(“Thanks for the participating in the survey!”);
return true;
}

Placing the above function in the newform.aspx using SharePoint designer  did the trick.

We could use the PreSaveAction function for custom validation as well !

http://edinkapic.blogspot.com/2007/10/add-javascript-date-validation-into.html

Bye..

Comments
  1. Chuck says:

    how about if we want to validate the answers when the user clicks the “Next” button?
    What should be the name of the function we should call?

  2. [...] JavaScript on click of Finish Button in Survey – SharePoint [...]

Share your thoughts

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s