Navigation Experience Feedback

Good navigation is invisible - users only notice it when it fails. This form captures navigation pain points by measuring effort required to find information, path analysis, and specific UX issues. Deploy it after key user tasks to understand where your information architecture works and where it frustrates users. The data reveals whether problems are systemic (site structure) or page-specific (individual page design).

Website & UX

Try the Form

Help us understand your experience finding what you needed.
What Were You Looking For?
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
export function navigationFeedbackForm(form: FormTs) {
// Navigation Experience Feedback - Website UX Assessment
// Demonstrates: RatingScale (CES), EmojiRating, RadioButton, CheckboxList, MatrixQuestion, Slider
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Navigation Feedback',
computedValue: () => 'Help us understand your experience finding what you needed.',
customStyles: {
backgroundColor: '#6366f1',
color: 'white',
padding: '20px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Task Context
// ============================================
const taskSection = form.addSubform('taskSection', {
title: 'What Were You Looking For?'
});
 
taskSection.addRow(row => {
row.addRadioButton('taskType', {
label: 'What were you trying to find or do?',
options: [
{ id: 'product', name: 'Find a specific product or service' },
{ id: 'info', name: 'Find information (pricing, specs, etc.)' },
{ id: 'support', name: 'Get help or support' },
{ id: 'contact', name: 'Find contact information' },
{ id: 'account', name: 'Access my account or settings' },
{ id: 'content', name: 'Read content (blog, articles, etc.)' },
{ id: 'compare', name: 'Compare options' },
{ id: 'other', name: 'Something else' }
],
orientation: 'vertical',
isRequired: true
});
});
 
taskSection.addRow(row => {
row.addRadioButton('taskOutcome', {
label: 'Did you find what you were looking for?',
options: [
{ id: 'yes-easy', name: 'Yes, easily' },
{ id: 'yes-effort', name: 'Yes, but it took effort' },
{ id: 'partial', name: 'Partially - found some of what I needed' },
{ id: 'no', name: 'No, couldn\'t find it' },
{ id: 'gave-up', name: 'Gave up looking' }
],
orientation: 'vertical',
isRequired: true
});
});
 
// ============================================
// SECTION 2: Navigation Effort (CES-style)
// ============================================
const effortSection = form.addSubform('effortSection', {
title: 'Navigation Effort',
isVisible: () => taskSection.radioButton('taskType')?.value() !== null
});
 
effortSection.addRow(row => {
row.addRatingScale('navigationEffort', {
label: 'How easy was it to navigate to what you needed?',
preset: 'ces',
lowLabel: 'Very difficult',
highLabel: 'Very easy',
alignment: 'center',
isRequired: true
});
});
 
effortSection.addRow(row => {
row.addEmojiRating('navigationFeeling', {
label: 'How did the navigation experience make you feel?',
preset: 'custom',
emojis: [
{ id: 'lost', emoji: '😵', label: 'Lost' },
{ id: 'confused', emoji: '😕', label: 'Confused' },
{ id: 'neutral', emoji: '😐', label: 'Neutral' },
{ id: 'confident', emoji: '🙂', label: 'Confident' },
{ id: 'effortless', emoji: '😎', label: 'Effortless' }
],
size: 'lg',
alignment: 'center'
});
});
 
// ============================================
// SECTION 3: Navigation Path
// ============================================
const pathSection = form.addSubform('pathSection', {
title: 'How Did You Navigate?',
isVisible: () => taskSection.radioButton('taskType')?.value() !== null
});
 
pathSection.addRow(row => {
row.addCheckboxList('navigationMethods', {
label: 'How did you try to find what you needed? (Select all that apply)',
options: [
{ id: 'main-menu', name: 'Main navigation menu' },
{ id: 'search', name: 'Search bar' },
{ id: 'footer', name: 'Footer links' },
{ id: 'sidebar', name: 'Sidebar navigation' },
{ id: 'breadcrumbs', name: 'Breadcrumbs' },
{ id: 'links', name: 'In-page links' },
{ id: 'back', name: 'Browser back button' },
{ id: 'random', name: 'Random clicking around' },
{ id: 'external', name: 'External search (Google)' }
],
orientation: 'vertical'
});
});
 
pathSection.addRow(row => {
row.addSlider('pagesVisited', {
label: 'Approximately how many pages did you visit before finding what you needed?',
min: 1,
max: 15,
step: 1,
showValue: true,
unit: 'pages',
defaultValue: 3
});
});
 
// ============================================
// SECTION 4: Specific Issues (If struggled)
// ============================================
const issuesSection = form.addSubform('issuesSection', {
title: 'What Made It Difficult?',
isVisible: () => {
const effort = effortSection.ratingScale('navigationEffort')?.value();
const outcome = taskSection.radioButton('taskOutcome')?.value();
return (effort !== null && effort !== undefined && effort <= 4) || outcome === 'no' || outcome === 'gave-up' || outcome === 'yes-effort';
},
customStyles: {
backgroundColor: '#fef3c7',
padding: '16px',
borderRadius: '8px',
borderLeft: '4px solid #f59e0b'
}
});
 
issuesSection.addRow(row => {
row.addCheckboxList('navigationIssues', {
label: 'What issues did you encounter? (Select all that apply)',
options: [
{ id: 'labels', name: 'Menu labels were confusing' },
{ id: 'deep', name: 'Content was buried too deep' },
{ id: 'unexpected', name: 'Things weren\'t where I expected' },
{ id: 'many-options', name: 'Too many menu options' },
{ id: 'few-options', name: 'Missing menu options' },
{ id: 'search-fail', name: 'Search didn\'t find what I needed' },
{ id: 'mobile', name: 'Hard to navigate on mobile' },
{ id: 'loading', name: 'Pages were slow to load' },
{ id: 'dead-ends', name: 'Hit dead ends (no back/next options)' }
],
orientation: 'vertical'
});
});
 
issuesSection.addSpacer();
 
issuesSection.addRow(row => {
row.addTextarea('issueDetails', {
label: 'Can you describe specifically what was frustrating?',
placeholder: 'Tell us where you got stuck or confused...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 5: Positive Experience (If easy)
// ============================================
const positiveSection = form.addSubform('positiveSection', {
title: 'What Worked Well?',
isVisible: () => {
const effort = effortSection.ratingScale('navigationEffort')?.value();
return effort !== null && effort !== undefined && effort >= 6;
},
customStyles: {
backgroundColor: '#d1fae5',
padding: '16px',
borderRadius: '8px'
}
});
 
positiveSection.addRow(row => {
row.addSuggestionChips('whatWorked', {
label: 'What made navigation easy? (Select up to 3)',
suggestions: [
{ id: 'clear-menu', name: 'Clear menu labels' },
{ id: 'search', name: 'Good search' },
{ id: 'logical', name: 'Logical structure' },
{ id: 'breadcrumbs', name: 'Helpful breadcrumbs' },
{ id: 'fast', name: 'Fast loading' },
{ id: 'mobile', name: 'Works well on mobile' },
{ id: 'consistent', name: 'Consistent layout' }
],
max: 3,
alignment: 'left'
});
});
 
// ============================================
// SECTION 6: Navigation Elements Rating
// ============================================
const elementsSection = form.addSubform('elementsSection', {
title: 'Rate Navigation Elements',
isVisible: () => effortSection.ratingScale('navigationEffort')?.value() !== null
});
 
elementsSection.addRow(row => {
row.addMatrixQuestion('elementsMatrix', {
label: 'How would you rate these navigation elements?',
rows: [
{ id: 'main-nav', label: 'Main navigation menu' },
{ id: 'search', label: 'Search functionality' },
{ id: 'layout', label: 'Page layout and structure' },
{ id: 'links', label: 'Links and call-to-actions' },
{ id: 'mobile', label: 'Mobile navigation' }
],
columns: [
{ id: 'na', label: 'N/A' },
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 7: Improvement Suggestions
// ============================================
const suggestionsSection = form.addSubform('suggestionsSection', {
title: 'Improvement Suggestions',
isVisible: () => effortSection.ratingScale('navigationEffort')?.value() !== null
});
 
suggestionsSection.addRow(row => {
row.addTextarea('improvementSuggestions', {
label: 'How could we make it easier to find things on our website?',
placeholder: 'Share any suggestions for improving navigation...',
rows: 3,
autoExpand: true
});
});
 
suggestionsSection.addRow(row => {
row.addThumbRating('wouldReturn', {
label: 'Based on your navigation experience, would you return to this website?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'Probably not',
size: 'lg',
alignment: 'center'
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Navigation Feedback Summary',
isVisible: () => {
const effort = effortSection.ratingScale('navigationEffort')?.value();
return effort !== null;
}
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const taskType = taskSection.radioButton('taskType')?.value();
const outcome = taskSection.radioButton('taskOutcome')?.value();
const effort = effortSection.ratingScale('navigationEffort')?.value();
const feeling = effortSection.emojiRating('navigationFeeling')?.value();
const pages = pathSection.slider('pagesVisited')?.value();
const wouldReturn = suggestionsSection.thumbRating('wouldReturn')?.value();
 
const taskLabels: Record<string, string> = {
'product': 'Product/Service',
'info': 'Information',
'support': 'Help/Support',
'contact': 'Contact Info',
'account': 'Account Access',
'content': 'Content',
'compare': 'Compare Options',
'other': 'Other'
};
 
const outcomeLabels: Record<string, string> = {
'yes-easy': 'Found easily',
'yes-effort': 'Found with effort',
'partial': 'Partially found',
'no': 'Not found',
'gave-up': 'Gave up'
};
 
const feelingEmojis: Record<string, string> = {
'lost': '😵',
'confused': '😕',
'neutral': '😐',
'confident': '🙂',
'effortless': '😎'
};
 
let emoji = (effort ?? 0) >= 5 ? '✅' : (effort ?? 0) >= 3 ? '⚠️' : '❌';
 
let summary = `${emoji} Navigation Feedback\n`;
summary += `${'═'.repeat(25)}\n\n`;
if (taskType) summary += `🎯 Looking for: ${taskLabels[taskType] || taskType}\n`;
if (outcome) summary += `📍 Outcome: ${outcomeLabels[outcome] || outcome}\n`;
if (effort) summary += `💪 Effort Score: ${effort}/7\n`;
if (feeling) summary += `${feelingEmojis[feeling] || ''} Feeling: ${feeling}\n`;
if (pages) summary += `📄 Pages Visited: ${pages}\n`;
if (wouldReturn) summary += `\n🔄 Would Return: ${wouldReturn === 'up' ? 'Yes' : 'Probably not'}`;
 
return summary;
},
customStyles: () => {
const effort = effortSection.ratingScale('navigationEffort')?.value() ?? 0;
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (effort >= 5) {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (effort >= 3) {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
}
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Navigation Feedback',
isVisible: () => effortSection.ratingScale('navigationEffort')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You!',
message: 'Your navigation feedback helps us create a better website experience. We review all responses to improve how people find what they need.'
});
}
 

Frequently Asked Questions

When should I trigger this survey?

Best triggers: after search usage, after browsing 3+ pages without conversion, after reaching key content pages, or after users click 'help' or support links. Avoid triggering on every page view to prevent fatigue.

What's a good navigation effort score?

Aim for 5+ on a 7-point scale (low effort). Scores below 4 indicate significant usability issues. Compare scores across different content types to identify which areas need the most work.

How do I identify systemic vs. page-specific issues?

If effort scores are consistently low across all content types, the problem is likely structural (menu design, IA). If specific content types score much lower than others, focus on those sections first.

Should I track actual navigation paths?

Yes - combine this survey data with analytics showing actual paths. The survey captures perceived effort; analytics show actual behavior. Together they reveal both the problem and its impact.

How can I improve low findability scores?

Common solutions: improve menu labels (use user language, not internal jargon), add breadcrumbs, improve search functionality, create landing pages for common tasks, and simplify deep hierarchies.