I am assigning the click function to a button. If I remove the SPAddMultipleListItems code, the alert fires. When I add it back, it does not.
Here is the code I used to assign the function above to the click event of the button.
Here is the code I used to assign the function above to the click event of the button.
$("input[id$='idSubmit']").click(function(){
postFunction();
});
The sample code I used was from your new feature post (https://spservices.codeplex.com/workitem/8719). I just entered in my site specific info. What is the recommended use of this function? Do I even need to wrap it into another function or should I just call the "options" function? Thank you very much for your help!