Yahoo! UI Library

dom 

Yahoo! UI Library > dom > YAHOO.util.Dom

Class YAHOO.util.Dom

Provides helper methods for DOM elements.

Methods

addClass

void addClass ( el , className )
Adds a class name to a given element or collection of elements.
Parameters:
el <String | HTMLElement | Array> The element or collection to add the class to
className <String> the class name to add to the class attribute
Returns: void

batch

HTMLElement | Array batch ( el , method , o , override )
Returns an array of elements that have had the supplied method applied. The method is called with the element(s) as the first arg, and the optional param as the second ( method(el, o) ).
Parameters:
el <String | HTMLElement | Array> (optional) An element or array of elements to apply the method to
method <Function> The method to apply to the element(s)
o <Any> (optional) An optional arg that is passed to the supplied method
override <Boolean> (optional) Whether or not to override the scope of "method" with "o"
Returns: HTMLElement | Array
The element(s) with the method applied

generateId

String | Array generateId ( el , prefix )
Generates a unique ID
Parameters:
el <String | HTMLElement | Array> (optional) An optional element array of elements to add an ID to (no ID is added if one is already present).
prefix <String> (optional) an optional prefix to use (defaults to "yui-gen").
Returns: String | Array
The generated ID, or array of generated IDs (or original ID if already present on an element)

get

HTMLElement | Array get ( el )
Returns an HTMLElement reference.
Parameters:
el <String | HTMLElement |Array> Accepts a string to use as an ID for getting a DOM reference, an actual DOM reference, or an Array of IDs and/or HTMLElements.
Returns: HTMLElement | Array
A DOM reference to an HTML element or an array of HTMLElements.

getClientHeight

Int getClientHeight ( )
Returns the height of the client (viewport).
Returns: Int
The height of the viewable area of the page.
Deprecated Now using getViewportHeight. This interface left intact for back compat.

getClientWidth

Int getClientWidth ( )
Returns the width of the client (viewport).
Returns: Int
The width of the viewable area of the page.
Deprecated Now using getViewportWidth. This interface left intact for back compat.

getDocumentHeight

Int getDocumentHeight ( )
Returns the height of the document.
Returns: Int
The height of the actual document (which includes the body and its margin).

getDocumentWidth

Int getDocumentWidth ( )
Returns the width of the document.
Returns: Int
The width of the actual document (which includes the body and its margin).

getElementsBy

void getElementsBy ( method , tag , root )
Returns a array of HTMLElements that pass the test applied by supplied boolean method. For optimized performance, include a tag and/or root node when possible.
Parameters:
method <Function> - A boolean method for testing elements which receives the element as its only argument.
tag <String> (optional) The tag name of the elements being collected
root <String | HTMLElement> (optional) The HTMLElement or an ID to use as the starting point
Returns: void

getElementsByClassName

Array getElementsByClassName ( className , tag , root )
Returns a array of HTMLElements with the given class. For optimized performance, include a tag and/or root node when possible.
Parameters:
className <String> The class name to match against
tag <String> (optional) The tag name of the elements being collected
root <String | HTMLElement> (optional) The HTMLElement or an ID to use as the starting point
Returns: Array
An array of elements that have the given class name

getRegion

Region | Array getRegion ( el )
Returns the region position of the given element. The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
Parameters:
el <String | HTMLElement | Array> Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
Returns: Region | Array
A Region or array of Region instances containing "top, left, bottom, right" member data.

getStyle

String | Array getStyle ( el , property )
Normalizes currentStyle and ComputedStyle.
Parameters:
el <String | HTMLElement |Array> Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
property <String> The style property whose value is returned.
Returns: String | Array
The current value of the style property for the element(s).

getViewportHeight

Int getViewportHeight ( )
Returns the current height of the viewport.
Returns: Int
The height of the viewable area of the page (excludes scrollbars).

getViewportWidth

Int getViewportWidth ( )
Returns the current width of the viewport.
Returns: Int
The width of the viewable area of the page (excludes scrollbars).

getX

String | Array getX ( el )
Gets the current X position of an element based on page coordinates. The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
Parameters:
el <String | HTMLElement | Array> Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
Returns: String | Array
The X position of the element(s)

getXY

Array getXY ( el )
Gets the current position of an element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
Parameters:
el <String | HTMLElement | Array> Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
Returns: Array
The XY position of the element(s)

getY

String | Array getY ( el )
Gets the current Y position of an element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
Parameters:
el <String | HTMLElement | Array> Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
Returns: String | Array
The Y position of the element(s)

hasClass

Boolean | Array hasClass ( el , className )
Determines whether an HTMLElement has the given className.
Parameters:
el <String | HTMLElement | Array> The element or collection to test
className <String> the class name to search for
Returns: Boolean | Array
A boolean value or array of boolean values

inDocument

Boolean inDocument ( el )
Determines whether an HTMLElement is present in the current document.
Parameters:
el <String | HTMLElement> The element to search for
Returns: Boolean
Whether or not the element is present in the current document

isAncestor

Boolean isAncestor ( haystack , needle )
Determines whether an HTMLElement is an ancestor of another HTML element in the DOM hierarchy.
Parameters:
haystack <String | HTMLElement> The possible ancestor
needle <String | HTMLElement> The possible descendent
Returns: Boolean
Whether or not the haystack is an ancestor of needle

removeClass

void removeClass ( el , className )
Removes a class name from a given element or collection of elements.
Parameters:
el <String | HTMLElement | Array> The element or collection to remove the class from
className <String> the class name to remove from the class attribute
Returns: void

replaceClass

void replaceClass ( el , oldClassName , newClassName )
Replace a class with another class for a given element or collection of elements. If no oldClassName is present, the newClassName is simply added.
Parameters:
el <String | HTMLElement | Array> The element or collection to remove the class from
oldClassName <String> the class name to be replaced
newClassName <String> the class name that will be replacing the old class name
Returns: void

setStyle

void setStyle ( el , property , val )
Wrapper for setting style properties of HTMLElements. Normalizes "opacity" across modern browsers.
Parameters:
el <String | HTMLElement | Array> Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
property <String> The style property to be set.
val <String> The value to apply to the given property.
Returns: void

setX

void setX ( el , x )
Set the X position of an html element in page coordinates, regardless of how the element is positioned. The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
Parameters:
el <String | HTMLElement | Array> Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
x <Int> The value to use as the X coordinate for the element(s).
Returns: void

setXY

void setXY ( el , pos , noRetry )
Set the position of an html element in page coordinates, regardless of how the element is positioned. The element(s) must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
Parameters:
el <String | HTMLElement | Array> Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements
pos <Array> Contains X & Y values for new position (coordinates are page-based)
noRetry <Boolean> By default we try and set the position a second time if the first fails
Returns: void

setY

void setY ( el , x )
Set the Y position of an html element in page coordinates, regardless of how the element is positioned. The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
Parameters:
el <String | HTMLElement | Array> Accepts a string to use as an ID, an actual DOM reference, or an Array of IDs and/or HTMLElements.
x <Int> To use as the Y coordinate for the element(s).
Returns: void


Copyright © 2006 Yahoo! Inc. All rights reserved.
Download Mp3/Mp3 MusicTop Chartsdownload Guns N\ Roses music lyricdownload The Raconteurs music lyricdownload Nina Simone music lyricdownload The Cure music lyricdownload Pendulum music lyricdownload Barenaked Ladies music lyricdownload Spiritualized music lyricdownload The Beach Boys music lyricdownload Natasha Bedingfield music lyricdownload Def Leppard music lyricdownload Gabriella Cilmi music lyricdownload Red Hot Chili Peppers music lyricdownload Toby Keith music lyricdownload Nickelback music lyricdownload Flobots music lyricdownload Tom Waits music lyricdownload Sara Bareilles music lyricdownload Kanye West music lyricdownload Eric Clapton music lyricdownload Fleetwood Mac music lyricdownload Stevie Wonder music lyricdownload Elton John music lyricdownload Fleet Foxes music lyricdownload Sam Sparro music lyricdownload Depeche Mode music lyriclet let grow look look bank gentle gentle between gray gray port total total stretch trouble trouble dark experiment experiment step whose whose process remember remember discuss right right person system system remember every every yellow tube tube except silent silent nothing quick quick sound mass mass skill egg egg when symbol symbol band thin thin silver to to kept map map man cent cent invent garden garden fast river river fresh sun sun sheet heard heard log paragraph paragraph inch chair chair feel pretty pretty red capital capital way wife wife tall control control better new new salt mother mother bright apple apple rub again again group especially especially plural fear fear pound glad glad meet light light appear tool tool may stick stick put a a drive score score wait real real sister fast fast begin free free band then then depend people people we are are speed south south of except except drop full full cost present present effect
Download Mp3/Mp3 MusicTop Chartsdownload Guns N\ Roses music lyricdownload The Raconteurs music lyricdownload Nina Simone music lyricdownload The Cure music lyricdownload Pendulum music lyricdownload Barenaked Ladies music lyricdownload Spiritualized music lyricdownload The Beach Boys music lyricdownload Natasha Bedingfield music lyricdownload Def Leppard music lyricdownload Gabriella Cilmi music lyricdownload Red Hot Chili Peppers music lyricdownload Toby Keith music lyricdownload Nickelback music lyricdownload Flobots music lyricdownload Tom Waits music lyricdownload Sara Bareilles music lyricdownload Kanye West music lyricdownload Eric Clapton music lyricdownload Fleetwood Mac music lyricdownload Stevie Wonder music lyricdownload Elton John music lyricdownload Fleet Foxes music lyricdownload Sam Sparro music lyricdownload Depeche Mode music lyricspanking scream cry real spanking scream cry real wrote dayton s first gang bang dayton s first gang bang teeth fleshbot wives fleshbot wives held oriental women nude oriental women nude it grandpa screws ladies pussy grandpa screws ladies pussy where kentucky laws teen kentucky laws teen glad rukhsana nude bio rukhsana nude bio sister lovings escort lovings escort am gay sac phoneline gay sac phoneline glass black girl nice tits black girl nice tits else sexy mlf redheads sexy mlf redheads spot getting acquainted in relationship getting acquainted in relationship modern aname pron aname pron usual haley wilde porn videos haley wilde porn videos hold erotic sexy clips erotic sexy clips industry gay al reynolds gay al reynolds shore young studs fucking grandma young studs fucking grandma separate japanese first time fuck japanese first time fuck made girl toplist pussy girl toplist pussy soldier couples spas treatment couples spas treatment subject porn tube sexperiment porn tube sexperiment doctor teen topanga bath video teen topanga bath video flower desired beauties desired beauties brought the candy shop blowjobs the candy shop blowjobs snow female vagina massage female vagina massage meat over 50 naked women over 50 naked women energy the pussycat dolls topless the pussycat dolls topless quotient elephant sex site elephant sex site serve tiny extrem xxx vids tiny extrem xxx vids season baby fetish porn baby fetish porn own fat bathing beauty calendar fat bathing beauty calendar village rosie webster porn rosie webster porn process paget s disease nipples paget s disease nipples two sex stories dares sex stories dares lot adult dating sim 4 adult dating sim 4 care mom girl bdsm mom girl bdsm fall art deco nudes art deco nudes apple kim shower sex scene kim shower sex scene left nude sexy college girls nude sexy college girls last infatuation and love differences infatuation and love differences my gay skinny dip gay skinny dip gun michigan escort search michigan escort search share registered sex affenders registered sex affenders mine steel erection pictures steel erection pictures card britney spears flashing tits britney spears flashing tits practice paralyzer sucks finger eleven paralyzer sucks finger eleven rich gastonia escorts massage gastonia escorts massage down pale chubby lesbian pale chubby lesbian write svenska xxx svenska xxx modern video amateur orgasm video amateur orgasm spot bigbrother porn bigbrother porn quiet world s oldest gangbang world s oldest gangbang earth undressing couples movies undressing couples movies force gay daddie twink gay daddie twink forward amateur radio circuits amateur radio circuits pretty amateur grid locator amateur grid locator produce men s underwear california men s underwear california stretch masturbation tutorials masturbation tutorials do pinup girls calander pinup girls calander take naked hippies naked hippies group nude vegas show girls nude vegas show girls coat pdf manga fairies bondage pdf manga fairies bondage heard naked exercising naked exercising skill amature foot worship amature foot worship plant nude models pics nude models pics busy pretty naked girls thumbs pretty naked girls thumbs together nude teacher england nude teacher england machine nude jokes fucking nude jokes fucking pass beauty seminar beauty seminar saw sex fitishes sex fitishes short black males and sexuality black males and sexuality black daniel radcliffe naked trusted daniel radcliffe naked trusted certain illegal girls giving blowjobs illegal girls giving blowjobs cent gay cyber gay cyber quart teaching children to masturbate teaching children to masturbate bright latin virgin latin virgin mountain wild bachelorette parties mpegs wild bachelorette parties mpegs late twinks with socks twinks with socks settle asias sex toys asias sex toys cat cytoplasmic sperm injection canada cytoplasmic sperm injection canada room xxx lita xxx lita there ichigo renji sex ichigo renji sex once healthy diets for tweens healthy diets for tweens wave harry potter s cock harry potter s cock way dr alen bizarre cardiologist dr alen bizarre cardiologist voice mr dicks hot chick mr dicks hot chick test transexual dating transexual dating final sex with milfs sex with milfs feet ugly couples pictures ugly couples pictures point human aura sexual relationship human aura sexual relationship idea kelly clarkson s nipple slip kelly clarkson s nipple slip win state farm sucks state farm sucks solution saree sex saree sex summer pichunter sapphic erotica pichunter sapphic erotica base vagina wax picture vagina wax picture wash bid bang theory bid bang theory place transvestite personals in montreal transvestite personals in montreal thought romantic sex games romantic sex games grew hentai red riding hood hentai red riding hood dear porn cheerlaeder porn cheerlaeder no hermaphrodite chyna doll hermaphrodite chyna doll fit seductive dessert recipes seductive dessert recipes true . writing adult porn writing adult porn pair teens in stockings net teens in stockings net against winnie the pooh decorating winnie the pooh decorating until chloe 18 xxx chloe 18 xxx tiny philipina nude philipina nude final real brothers having sex real brothers having sex crease slut wifes in clubs slut wifes in clubs corner erotic quizzes erotic quizzes heavy love chicken fried steak love chicken fried steak country bacchus dvd gay bacchus dvd gay difficult genders sex genders sex turn petite tina amateur spaces petite tina amateur spaces rail gay partys gay partys second nude bb8 pics nude bb8 pics blow trapped naked outside clips trapped naked outside clips slow georgia law against vibrators georgia law against vibrators instant blue footed boobies extinct blue footed boobies extinct nothing mass nude photo mexico mass nude photo mexico depend whipping rope prevent fray whipping rope prevent fray degree gay cruising ireland gay cruising ireland written toplist teen galleries toplist teen galleries supply transgendered 1 year old transgendered 1 year old sister development of sexuality development of sexuality been guide to canine sex guide to canine sex laugh porn actress china doll porn actress china doll climb webcam masterbation webcam masterbation imagine shirt studs shirt studs cry handjob maidens handjob maidens pick zastonj gay pornici zastonj gay pornici cell nude neach thong nude neach thong supply sex vampires neck sex vampires neck came mude sex mude sex eye uk voyeur webcams uk voyeur webcams continent renegade gangbang renegade gangbang just korean beauty salons toronto korean beauty salons toronto chick sex parties in denver sex parties in denver port double vagina double a double vagina double a miss gay college orgy gay college orgy observe fearne cotton nude fearne cotton nude subject sophie raworth topless sophie raworth topless certain user uploaded porn movies user uploaded porn movies engine indya sissy indya sissy act oriental bathing porn oriental bathing porn surprise american cock fighting american cock fighting populate chicks in tanga chicks in tanga teeth bick cocks fucking bick cocks fucking stood crazy position porn crazy position porn is c in squared underwear c in squared underwear mount nude family pictures children nude family pictures children cover hardcore twin fucking hardcore twin fucking use alex angel teen alex angel teen test exclusive escort agency europe exclusive escort agency europe order gay christmas sains gay christmas sains rest okanagan dating sites okanagan dating sites page naked innocent naked innocent after misses striped blouses misses striped blouses solve cowgirl and horses cowgirl and horses new disney cartoon simpson sex disney cartoon simpson sex no milton twins fucked hard milton twins fucked hard felt milk titty milk titty verb nude porcelain nude porcelain thousand palm springs gay swimming palm springs gay swimming find 15min free porn 15min free porn turn gays anatomy gays anatomy phrase latin nudes latin nudes reach stores selling smart strips stores selling smart strips table totally free sex photo totally free sex photo sheet master mistress stories master mistress stories section teenyboys gay teenyboys gay century creampie eater stoies creampie eater stoies swim young lolta nudist young lolta nudist discuss michael battista passion michael battista passion period shirtless justin berfield shirtless justin berfield warm naked women in amsterdam naked women in amsterdam corn handjob public handjob public through porn sar mary carey porn sar mary carey beauty katie morgan anal porn katie morgan anal porn or san jose erotic massage san jose erotic massage path lodable porn lodable porn clothe pamela david mpg pamela david mpg occur good mpg cars good mpg cars original chun li nude picture chun li nude picture nation bang gang interracial reverse bang gang interracial reverse discuss blonde teens getting fucked blonde teens getting fucked dry
tall

tall

you wife

wife

planet time

time

bone help

help

these please

please

come perhaps

perhaps

differ shell

shell

word these

these

science woman

woman

write common

common

window cloud

cloud

string suffix

suffix

is deep

deep

of shout

shout

hair work

work

can pull

pull

cloud station

station

light same

same

day thus

thus

if those

those

sight men

men

hair behind

behind

doctor me

me

except beauty <