AJAX (Asynchronous Javascript And XML) is a popular technique for creating interactive websites, though other technologies (e.g. JSON) are often used instead of XML.

learn more… | top users | synonyms

-1
votes
2answers
61 views

Best scenarios to use ajax [closed]

I'm building a website application where users post contents using a form similar to blog-entry forms, this form allows uploading of files, has a wysiwyg editor, etc. Now since it will be posting a ...
2
votes
0answers
42 views

ajax vs button(action) submission for configuration/option settings [duplicate]

I read this post (ajax checkboxes vs submit button) on a similar topic and I am at an impasse. I've noticed a move towards active changes for configuration and settings in applications for all sorts ...
8
votes
3answers
243 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 ...
0
votes
1answer
83 views

Loading image vs full page post back?

If I have a large table of data that when sorted take like 5-10 secs to sort, is it a better UX to just do a page post back or better to add a loading image and use ajax call?
6
votes
2answers
159 views

How to style a button - AJAX vs Hard Refresh?

When I'm casually surfing the internet, I stumble upon random buttons that I'm not really sure if they're going to open up a modal or just slide down a div so I just get scared of clicking them in ...
0
votes
3answers
128 views

Showing a loader for longer than required because it looks good?

Strange question this :) Basically I have a website whereby lots of the loading/posting to a database is done with ajax. At the moment there are no loading screens. As such if something breaks the ...
3
votes
3answers
80 views

How to provide a visual indication that user needs to enter at least a few characters before an ajax search begins?

We have a large amount of users (e.g. a couple of millions) and we would like to start searching only after the user types in 2 characters or more. What visual indication can be provided to users in ...
8
votes
8answers
435 views

What to display while waiting for a process (4-5 seconds) to complete?

We realized that in some cases the user may be waiting up to 4 or 5 seconds (depending on connection) for their form (or some action) to be processed. The form involves getting data from other servers ...
2
votes
3answers
66 views

Should I allow users to reorganise menu items?

I am working on a video sharing application. Would it be best if I allow the user to organize the menu items: e.g. Home Videos Users Account User would be able to organize them as: Account ...
4
votes
1answer
149 views

How Should Tabbed Content be Loaded?

There are several approaches to loading content inside tabs. For example, Load all content initially, then just manipulate the DOM to show/hide tabs Load only the content of the active tab ...
3
votes
1answer
138 views

Save session state on search option change or after getting the search results?

I have a widget that helps looking for posts in my site. Here's a picture of the widget (site's not online yet) I want to use html5 session storage to store the widget options among pages. When a ...
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 ...
-4
votes
2answers
216 views

Sharepoint Style Ajax Loader/Spinner [closed]

Does anyone know where I can find a spinner or ajax loader like the one Sharepoint uses? That is by far the most awesome loader I have seen. If anyone knows of an even more awesome loader then please ...
0
votes
1answer
95 views

Is it OK to use links to display GUI elements or perform actions? [duplicate]

Possible Duplicate: HTML buttons vs hyperlinks for navigation HTML links were born to show internal or external pages, or take you to a specific page position (anchors). Now, with the ...
8
votes
5answers
429 views

Is there a name for this instant filter search pattern?

I've been trying to find a jQuery plugin which creates behavior similar to that of Stack Exchange user searches. The user search used on Stack Exchange sites is not an auto complete, but is more akin ...
4
votes
4answers
569 views

Ajax loader - icon vs text

I have seen many sites using Ajax loader as an icon or some use plain text and some use both. What is the significance of using the above three methods? Especially the third method where both are used ...
9
votes
3answers
243 views

Should we be optimistic or pessimistic with UI updates on AJAX requests?

We are discussing in our team how best to handle UI updates after a user does something to cause an AJAX request to the server. Here are options we are considering: Instantly update the UI and ...
0
votes
1answer
333 views

What are the best practices for UX concerning Web 2.0 RIA applications?

I've seen some questions on specific UX designs best practices, like for the mobile apps (Android), but are there best practices for UX for the new Web 2.0 interactive web applications, like for RIA? ...
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 ...
0
votes
2answers
306 views

What is a good approach to reordering table rows from a usability standpoint? [duplicate]

Possible Duplicate: Most intuitive way to offer manual sorting? I have a web application that uses many table rows. Each row typically has an ordering field, and the client just put a ...
8
votes
4answers
345 views

What is a good clean way of notifying the user their action was registered?

I am developing an internal website for managing company resources. The user sees very few full page refreshes. Therefore, when they click "Save" to save their changes, they don't get a refreshed page ...
3
votes
2answers
471 views

When should I use an ajax loader? When I wait more than 1 second, 2 seconds or 3 seconds?

In the web app I am working on right now we'll have some pages that will perhaps need more time to load. When should I use an ajax loader? After 1, 2 or 3 seconds?
4
votes
4answers
434 views

Subtle and understandable indication of AJAX page fragment load in progress? (No gifs!)

I am working with a home-grown CMS and have recently "upgraded" the entire thing to use javascript/AJAX/XHR to handle every page load and form submit, no exceptions. So far so good. All links load a ...
4
votes
3answers
256 views

Assume success and show response immediately or wait for a response from the server?

All over my CMS I have buttons that toggle something on or off by sending an ajax request, updating the db, and then changes state and value of the button on success. Very basic "ajax" and "toggle". ...
2
votes
2answers
352 views

placement of ajax “loading” image

I am puzzling over the location to display a moving GIF so that a user knows when a site is processing and they should wait. The site I am working on has many forms that a user changes between using a ...
6
votes
1answer
189 views

How many letters should be typed in “guessing” ajax search before first suggestion?

When searching with ajax based suggesting field, how many letters should be typed before it starts to suggest results? 1,2,3..
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, ...
0
votes
2answers
343 views

Improve the User Interface of Website [closed]

So I am using Visual Studio 2008, ASP.net 3.5, with the basic toolkit provided. Now I have made the GUI with a lot of functionality but the design is very basic and looks too old. I need to give it ...
20
votes
4answers
1k views

What is an acceptable response time for my ajax ui?

When I have to load new information from my web server via ajax after a user action, how fast should the information be displayed for the user in order to be a good working UI for the user?