Ajax Layer JavaScript DHTML




DOM Example: setXY




YAHOO.namespace('example.dom');
YAHOO.example.dom.init = function() {
   var move = function(e) {
      var xy = [YAHOO.util.Event.getPageX(e), YAHOO.util.Event.getPageY(e)];
      YAHOO.util.Dom.setXY('test', xy);
   };
   
   YAHOO.util.Event.addListener(document, 'click', move);
};
YAHOO.util.Event.addListener(window, 'load', YAHOO.example.dom.init);





   

DOM Example: setXY


   

This example demonstrates how to use Dom.setXY to set an elements position.


   

Click anywhere and the element will move to the click point.


   




           
       
yui.zip( 3,714 k)