YUI Library JavaScript DHTML





    
Simple Event Handling and Processing

/*margin and padding on body element
  can introduce errors in determining
  element position and are not recommended;
  we turn them off as a foundation for YUI
  CSS treatments. */
body {
  margin:0;
  padding:0;
}






Simple Event Handling and Processing



  

Clicking in the blue box will pop up a "Hello World!" alert window.  Clicking on the first link will take you to the YUI website; clicking on the second link, which has the same href attribute, will pop up an alert instead and not navigate to a new page.


Event Utility is used here to do two things:



      
  1. Attach the click event handler to the blue box;

  2.   
  3. Attach an event handler to the second <a> element that uses YAHOO.util.Event.preventDefault() to prevent the link, when clicked, from navigating to a new page. 

      





Click for Hello World alert.



  

The YUI Library. (Link navigates away from page.)


  

The YUI Library. (Link's default behavior is suppressed.)






   
  
yui_2.7.0b.zip( 4,431 k)