Tagged Questions
7
votes
3answers
235 views
Single or Multi page web application
Is it better UX wise, to build a web application with traditional multi-page transitions or to have a single page application where the other components of the page use AJAX and jQuery to load content ...
3
votes
1answer
76 views
On a click, show a stub or not?
Consider a click event that would cause a significant change of view (e.g. going from a list of items to a detail view of a single item). What is a better experience:
Switch to a stub view which ...
2
votes
2answers
297 views
Should I reload only those areas of site where data has changed?
I think the rule is: Reload only those areas of site where data has changed. Don't fetch the areas where no changes have been made.
The pros of this rule are:
1. Users will be able to examine ...
10
votes
4answers
1k views
HTML buttons vs hyperlinks for navigation
When creating an overall site style guide, how do you determine when a button or a hyperlink should be for something other than navigation?
I see many time with the heavy usage of jQuery and AJAX, ...