cycling jQuery_Succinctly | Page 77

Cancel default browser behavior with preventDefault() When a link is clicked or a form is submitted, the browser will invoke its default functionality associated with these events. For example, click an link and the Web browser will attempt to load the value of the href attribute in the current browser window. To stop the browser from performing this type of functionality, you can use the preventDefault() method of the jQuery normalized event object. Sam