Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Link: Difference between revisions

From MoodleDocs
mNo edit summary
Line 33: Line 33:
* [http://www.useit.com/alertbox/within_page_links.html Avoid Within-Page Links (Jakob Nielsen's Alertbox)]
* [http://www.useit.com/alertbox/within_page_links.html Avoid Within-Page Links (Jakob Nielsen's Alertbox)]
* [http://www.useit.com/alertbox/nanocontent.html First 2 Words: A Signal for the Scanning Eye (Jakob Nielsen's Alertbox)]
* [http://www.useit.com/alertbox/nanocontent.html First 2 Words: A Signal for the Scanning Eye (Jakob Nielsen's Alertbox)]
* [http://msdn.microsoft.com/en-us/library/aa511454.aspx Buttons vs. Links http://msdn.microsoft.com/en-us/library/aa511454.aspx]
* [http://discuss.joelonsoftware.com/default.asp?design.4.403046.4 links: http://msdn.microsoft.com/en-us/library/aa511483.aspx]
* [http://discuss.joelonsoftware.com/default.asp?design.4.403046.4 http://discuss.joelonsoftware.com/default.asp?design.4.403046.4]

Revision as of 19:50, 8 August 2009

Moodle User Interface Guidelines > Link

Note: This page is a work-in-progress. Feedback and suggested improvements are welcome. Please join the discussion on moodle.org or use the page comments.

This is a guideline for a Moodle Interface Guideline. Comments: developer forum thread


Problem

The user needs to be provided the choice to issue a command or to navigate in the user interface.

Forces: factors that affect selection

  • Links take up less screen real estate than buttons
  • Links are meant primarily for navigation and users may not expect clicking them to have consequences
    • If used for commands, this can be alleviated by having the link label clearly state what it does as command verbs: "Undo"

Solution

Best practice is to label navigational links the same to their target page's main heading (or title). This way, the user experience has continuity: users get what they expect.

For command links, use an action verb. When using command links, the command is mediated to the server in form of a GET parameter. To keep all Moodle URLs bookmarkable, redirect (using HTTP headers) any page, the url of which contains GET parameters that result in user data being changed, to a new URL that does not contain the GET parameter.

Popups are adviced against. Users easily lose context when a new window opens. If you absolutely must use popups, have the actual URL in the href attribute of the HTML anchor (a) element, and use an event to create the popup. This way, links are still bookmarkable, can be opened to a new tab, and still work without javascript.

I have testified numerous times in usability testing,  
a user clicking a link: when a new window opens, the user
does not realize this (despite a new button appearing in 
the task bar of the operating system). They are puzzled 
and lost when the back button is broken. 
--Olli Savolainen 19:26, 8 August 2009 (UTC)

Related guidelines

Further information / Sources