PHP and javascript snippets you can copy and paste.

Friday, June 8, 2007

js_move_elementToYPos(element, yPoint)

/**
* Move element to vertical point.
*
* @param object element
* @param int yPoint
*/
function js_move_elementToYPos(element, yPoint){
element.style.position = 'absolute';
element.style.top = yPoint;
}

0 comments:

Blog Archive