I have a form made on google docs, and I have a script that I\'ve just created (that isn\'t complete) that will analyze the responses on the form, and validate them based on
Something like this will show you the ids in the logger...
var form = FormApp.getActiveForm();
var items = form.getItems();
for (var i in items) {
Logger.log(items[i].getTitle() + ': ' + items[i].getId());
}
To see the IDs manually in Chrome >> View Form >> right-click on the question Label >> Inspect element >> look for the for="entry_XXXXXXX"
attribute. That 'xxxxxxx' will be the id.
An update to Bryan P's answer:
To find the ID:
You want the ##########.