Why Not?

What shall we do today…

Tag: usability

Making Usable Frameworks and SDKs

User experience is one of the most important parts when developing a project. Users should never have to think or fight with your product if you wish for it to succeed. If you look at most of the successful web applications today, the simplicity of the user experience if prevalent.  Gmail and Google Calendar are [...]

jQuery: Remove All List Elements but First One

Here is a quick jQuery snippet to remove all DOM elements from a list except for the first one: $(“li:not(:first)”).remove(); Where would this be useful? Say you are adding user choices to a list for a query and you have a remove event attached to each item. But you want the user to be able [...]