Yahoo! UI Library

AutoComplete Widget 

Yahoo! UI Library > autocomplete > YAHOO.widget.AutoComplete

Class YAHOO.widget.AutoComplete

The AutoComplete class provides the customizable functionality of a plug-and-play DHTML auto completion widget. Some key features:
  • Navigate with up/down arrow keys and/or mouse to pick a selection
  • The drop down container can "roll down" or "fly out" via configurable animation
  • UI look-and-feel customizable through CSS, including container attributes, borders, position, fonts, etc

Constructor

YAHOO.widget.AutoComplete ( elInput , elContainer , oDataSource , oConfigs )
Parameters:
elInput <HTMLElement> DOM element reference of an input field.
elInput <String> String ID of an input field.
elContainer <HTMLElement> DOM element reference of an existing DIV.
elContainer <String> String ID of an existing DIV.
oDataSource <Object> Instance of YAHOO.widget.DataSource for query/results.
oConfigs <Object> (optional) Object literal of configuration params.

Properties

_aListItems - private Array

Array of <li> elements references that contain query results within the results container.

_bContainerOpen - private Boolean

Whether or not the results container is currently open.

_bFocused - private Boolean

Whether or not the input field is currently in focus. If query results come back but the user has already moved on, do not proceed with auto complete behavior.

_bItemSelected - private Boolean

Whether or not an item has been selected since the container was populated with results. Reset to false by _populateList, and set to true when item is selected.

_bOverContainer - private Boolean

Whether or not the mouse is currently over the results container. This is necessary in order to prevent clicks on container items from being text input field blur events.

_iFrameSrc - private String

Src to iFrame used when useIFrame = true. Supports implementations over SSL as well.

_maxResultsDisplayed - private Number

Internal count of <li> elements displayed and hidden in results container.

_nDelayID - private Number

Delay timeout ID.

_nDisplayedItems - private Number

Number of <li> elements currently displayed in results container.

_nIndex - private Number

Internal class variable to index multiple AutoComplete instances.
Default Value: 0

_nKeyCode - private Number

Key code of the last key pressed in textbox.

_oAnim - private Boolean

Animation instance for container expand/collapse.

_oContainer - private HTMLElement

Container DOM element.

_oCurItem - private HTMLElement

Pointer to the currently highlighted <li> element in the container.

_oTextbox - private HTMLElement

Text input field DOM element.

_queryInterval - private Object

For users typing via certain IMEs, queries must be triggered by intervals, since key events yet supported across all browsers for all IMEs.

_sCurQuery - private String

Current query string

_sName - private String

Name of AutoComplete instance.

_sSavedQuery - private String

Past queries this session (for saving delimited queries).

allowBrowserAutocomplete - Boolean

Whether or not to allow browsers to cache user-typed input in the input field. Disabling this feature will prevent the widget from setting the autocomplete="off" on the input field. When autocomplete="off" and users click the back button after form submission, user-typed input can be prefilled by the browser from its cache. This caching of user input may not be desired for sensitive data, such as credit card numbers, in which case, implementers should consider setting allowBrowserAutocomplete to false.
Default Value: true

alwaysShowContainer - Boolean

Whether or not the results container should always be displayed. Enabling this feature displays the container when the widget is instantiated and prevents the toggling of the container to a collapsed state.
Default Value: false

animHoriz - Boolean

Whether or not to animate the expansion/collapse of the results container in the horizontal direction.
Default Value: false

animSpeed - Number

Speed of container expand/collapse animation, in seconds..
Default Value: 0.3

animVert - Boolean

Whether or not to animate the expansion/collapse of the results container in the vertical direction.
Default Value: true

autoHighlight - Boolean

Whether or not the first item in results container should be automatically highlighted on expand.
Default Value: true

dataSource - Object

The DataSource object that encapsulates the data used for auto completion. This object should be an inherited object from YAHOO.widget.DataSource.

delimChar - String | String[]

Query delimiter. A single character separator for multiple delimited selections. Multiple delimiter characteres may be defined as an array of strings. A null value or empty string indicates that query results cannot be delimited. This feature is not recommended if you need forceSelection to be true.

forceSelection - Boolean

Whether or not to force the user's selection to match one of the query results. Enabling this feature essentially transforms the input field into a <select> field. This feature is not recommended with delimiter character(s) defined.
Default Value: false

highlighClassName - String

Class name of a highlighted item within results container.
Default Value: "yui-ac-highlight"

maxResultsDisplayed - Number

Maximum number of results to display in results container.
Default Value: 10

minQueryLength - Number

Number of characters that must be entered before querying for results. A negative value effectively turns off the widget. A value of 0 allows queries of null or empty string values.
Default Value: 1

prehighlightClassName - String

Class name of a pre-highlighted item within results container.

queryDelay - Number

Number of seconds to delay before submitting a query request. If a query request is received before a previous one has completed its delay, the previous request is cancelled and the new request is set to the delay.
Default Value: 0.5

typeAhead - Boolean

Whether or not the input field should be automatically updated with the first query result as the user types, auto-selecting the substring that the user has not typed.
Default Value: false

useIFrame - Boolean

Whether or not to use an iFrame to layer over Windows form elements in IE. Set to true only when the results container will be on top of a <select> field in IE and thus exposed to the IE z-index bug (i.e., 5.5 < IE < 7).
Default Value: false

useShadow - Boolean

Whether or not the results container should have a shadow.
Default Value: false

Methods

__initProps

private void __initProps ( )
Updates and validates latest public config properties.
Returns: void

_cancelIntervalDetection

private void _cancelIntervalDetection ( oSelf )
Cancels text input detection by intervals.
Parameters:
oSelf <Object> The AutoComplete instance.
Returns: void

_clearSelection

private void _clearSelection ( )
When forceSelection is true and the user attempts leave the text input box without selecting an item from the query results, the user selection is cleared.
Returns: void

_enableIntervalDetection

private void _enableIntervalDetection ( )
Enables query triggers based on text input detection by intervals (rather than by key events).
Returns: void

_initContainer

private void _initContainer ( )
Initializes the results container once at object creation
Returns: void

_initContainerHelpers

private void _initContainerHelpers ( )
Initializes the results container helpers if they are enabled and do not exist
Returns: void

_initList

private void _initList ( )
Clears out contents of container body and creates up to YAHOO.widget.AutoComplete#maxResultsDisplayed <li> elements in an <ul> element.
Returns: void

_initListItem

private void _initListItem ( oItem , nItemIndex )
Initializes each <li> element in the container list.
Parameters:
oItem <HTMLElement> The <li> DOM element.
nItemIndex <Number> The index of the element.
Returns: void

_isIgnoreKey

private Boolean _isIgnoreKey ( nKeycode )
Whether or not key is functional or should be ignored. Note that the right arrow key is NOT an ignored key since it triggers queries for certain intl charsets.
Parameters:
nKeycode <Number> Code of key pressed.
Returns: Boolean
True if key should be ignored, false otherwise.

_jumpSelection

private void _jumpSelection ( )
For values updated by type-ahead, the right arrow key jumps to the end of the textbox, otherwise the container is closed.
Returns: void

_moveSelection

private void _moveSelection ( nKeyCode )
Triggered by up and down arrow keys, changes the current highlighted <li> element item. Scrolls container if necessary.
Parameters:
nKeyCode <Number> Code of key pressed.
Returns: void

_onContainerMouseout

private void _onContainerMouseout ( v , oSelf )
Handles container mouseout events.
Parameters:
v <HTMLEvent> The mouseout event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onContainerMouseover

private void _onContainerMouseover ( v , oSelf )
Handles container mouseover events.
Parameters:
v <HTMLEvent> The mouseover event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onContainerResize

private void _onContainerResize ( v , oSelf )
Handles container resize events.
Parameters:
v <HTMLEvent> The resize event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onContainerScroll

private void _onContainerScroll ( v , oSelf )
Handles container scroll events.
Parameters:
v <HTMLEvent> The scroll event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onFormSubmit

private void _onFormSubmit ( v , oSelf )
Handles form submission event.
Parameters:
v <HTMLEvent> The submit event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onIMEDetected

private void _onIMEDetected ( oSelf )
Enables interval detection for Korean IME support.
Parameters:
oSelf <Object> The AutoComplete instance.
Returns: void

_onItemMouseclick

private void _onItemMouseclick ( v , oSelf )
Handles <li> element click events in the container.
Parameters:
v <HTMLEvent> The click event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onItemMouseout

private void _onItemMouseout ( v , oSelf )
Handles <li> element mouseout events in the container.
Parameters:
v <HTMLEvent> The mouseout event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onItemMouseover

private void _onItemMouseover ( v , oSelf )
Handles <li> element mouseover events in the container.
Parameters:
v <HTMLEvent> The mouseover event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onTextboxBlur

private void _onTextboxBlur ( v , oSelf )
Handles text input box losing focus.
Parameters:
v <HTMLEvent> The focus event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onTextboxFocus

private void _onTextboxFocus ( v , oSelf )
Handles text input box receiving focus.
Parameters:
v <HTMLEvent> The focus event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onTextboxKeyDown

private void _onTextboxKeyDown ( v , oSelf )
Handles textbox keydown events of functional keys, mainly for UI behavior.
Parameters:
v <HTMLEvent> The keydown event.
oSelf <object> The AutoComplete instance.
Returns: void

_onTextboxKeyPress

private void _onTextboxKeyPress ( v , oSelf )
Handles textbox keypress events.
Parameters:
v <HTMLEvent> The keypress event.
oSelf <Object> The AutoComplete instance.
Returns: void

_onTextboxKeyUp

private void _onTextboxKeyUp ( v , oSelf )
Handles textbox keyup events that trigger queries.
Parameters:
v <HTMLEvent> The keyup event.
oSelf <Object> The AutoComplete instance.
Returns: void

_populateList

private void _populateList ( sQuery , aResults , oSelf )
Populates the array of <li> elements in the container with query results. This method is passed to YAHOO.widget.DataSource#getResults as a callback function so results from the DataSource instance are returned to the AutoComplete instance.
Parameters:
sQuery <String> The query string.
aResults <Array> An array of query result objects from the DataSource.
oSelf <Object> The AutoComplete instance.
Returns: void

_selectItem

private void _selectItem ( oItem )
Selects a result item from the container
Parameters:
oItem <HTMLElement> The selected <li> element item.
Returns: void

_selectText

private void _selectText ( oTextbox , nStart , nEnd )
Selects text in the input field.
Parameters:
oTextbox <HTMLElement> Text input box element in which to select text.
nStart <Number> Starting index of text string to select.
nEnd <Number> Ending index of text selection.
Returns: void

_sendQuery

private void _sendQuery ( sQuery )
Makes query request to the DataSource.
Parameters:
sQuery <String> Query string.
Returns: void

_textMatchesOption

private Boolean _textMatchesOption ( )
Whether or not user-typed value in the text input box matches any of the query results.
Returns: Boolean
True if user-input text matches a result, false otherwise.

_toggleContainer

private void _toggleContainer ( bShow )
Animates expansion or collapse of the container.
Parameters:
bShow <Boolean> True if container should be expanded, false if container should be collapsed
Returns: void

_toggleContainerHelpers

private void _toggleContainerHelpers ( bShow )
Syncs results container with its helpers.
Parameters:
bShow <Boolean> True if container is expanded, false if collapsed
Returns: void

_toggleHighlight

private void _toggleHighlight ( oNewItem , sType )
Toggles the highlight on or off for an item in the container, and also cleans up highlighting of any previous item.
Parameters:
oNewItem <HTMLElement> The <li> element item to receive highlight behavior.
sType <String> Type "mouseover" will toggle highlight on, and "mouseout" will toggle highlight off.
Returns: void

_togglePrehighlight

private void _togglePrehighlight ( oNewItem , sType )
Toggles the pre-highlight on or off for an item in the container.
Parameters:
oNewItem <HTMLElement> The <li> element item to receive highlight behavior.
sType <String> Type "mouseover" will toggle highlight on, and "mouseout" will toggle highlight off.
Returns: void

_typeAhead

private void _typeAhead ( oItem , sQuery )
Updates in the text input box with the first query result as the user types, selecting the substring that the user has not typed.
Parameters:
oItem <HTMLElement> The <li> element item whose data populates the input field.
sQuery <String> Query string.
Returns: void

_updateValue

private void _updateValue ( oItem )
Updates the text input box value with selected query result. If a delimiter has been defined, then the value gets appended with the delimiter.
Parameters:
oItem <HTMLElement> The <li> element item with which to update the value.
Returns: void

doBeforeExpandContainer

Boolean doBeforeExpandContainer ( )
Overridable method called before container expands allows implementers to access data and DOM elements.
Returns: Boolean
Return true to continue expanding container, false to cancel the expand.

formatResult

String formatResult ( oResultItem , sQuery )
Overridable method that converts a result item object into HTML markup for display. Return data values are accessible via the oResultItem object, and the key return value will always be oResultItem[0]. Markup will be displayed within <li> element tags in the container.
Parameters:
oResultItem <Object> Result item representing one query result. Data is held in an array.
sQuery <String> The current query string.
Returns: String
HTML markup of formatted result data.

getListItemData

Object | Array getListItemData ( )
Public accessor to the data held in an <li> element of the results container.
Returns: Object | Array
Object or array of result data or null

getListItems

HTMLElement[] getListItems ( )
Public accessor to the internal array of DOM <li> elements that display query results within the results container.
Returns: HTMLElement[]
Array of <li> elements within the results container.

isContainerOpen

Boolean isContainerOpen ( )
Returns true if container is in an expanded state, false otherwise.
Returns: Boolean
Returns true if container is in an expanded state, false otherwise.

sendQuery

void sendQuery ( sQuery )
Makes query request to the DataSource.
Parameters:
sQuery <String> Query string.
Returns: void

setBody

void setBody ( sHeader )
Sets HTML markup for the results container body. This markup will be inserted within a <div> tag with a class of "ac_bd".
Parameters:
sHeader <String> HTML markup for results container body.
Returns: void

setFooter

void setFooter ( sFooter )
Sets HTML markup for the results container footer. This markup will be inserted within a <div> tag with a class of "ac_ft".
Parameters:
sFooter <String> HTML markup for results container footer.
Returns: void

setHeader

void setHeader ( sHeader )
Sets HTML markup for the results container header. This markup will be inserted within a <div> tag with a class of "ac_hd".
Parameters:
sHeader <String> HTML markup for results container header.
Returns: void

toString

String toString ( )
Public accessor to the unique name of the AutoComplete instance.
Returns: String
Unique name of the AutoComplete instance.

Events

_sLastTextboxValue

private _sLastTextboxValue ( )
Internal tracker to last known textbox value, used to determine whether or not to trigger a query via interval for certain IME users.

containerCollapseEvent

containerCollapseEvent ( oSelf )
Fired when the results container is collapsed.
Parameters:
oSelf <Object> The AutoComplete instance.

containerExpandEvent

containerExpandEvent ( oSelf )
Fired when the results container is expanded.
Parameters:
oSelf <Object> The AutoComplete instance.

dataErrorEvent

dataErrorEvent ( oSelf , sQuery )
Fired when the AutoComplete instance does not receive query results from the DataSource due to an error.
Parameters:
oSelf <Object> The AutoComplete instance.
sQuery <String> The query string.

dataRequestEvent

dataRequestEvent ( oSelf , sQuery )
Fired when the AutoComplete instance makes a query to the DataSource.
Parameters:
oSelf <Object> The AutoComplete instance.
sQuery <String> The query string.

dataReturnEvent

dataReturnEvent ( oSelf , sQuery , aResults )
Fired when the AutoComplete instance receives query results from the data source.
Parameters:
oSelf <Object> The AutoComplete instance.
sQuery <String> The query string.
aResults <Array> Results array.

itemArrowFromEvent

itemArrowFromEvent ( oSelf , elItem )
Fired when result item has been arrowed away from.
Parameters:
oSelf <Object> The AutoComplete instance.
elItem <HTMLElement> The <li> element item arrowed from.

itemArrowToEvent

itemArrowToEvent ( oSelf , elItem )
Fired when result item has been arrowed to.
Parameters:
oSelf <Object> The AutoComplete instance.
elItem <HTMLElement> The <li> element item arrowed to.

itemMouseOutEvent

itemMouseOutEvent ( oSelf , elItem )
Fired when result item has been moused out.
Parameters:
oSelf <Object> The AutoComplete instance.
elItem <HTMLElement> The <li> element item moused from.

itemMouseOverEvent

itemMouseOverEvent ( oSelf , elItem )
Fired when result item has been moused over.
Parameters:
oSelf <Object> The AutoComplete instance.
elItem <HTMLElement> The <li> element item moused to.

itemSelectEvent

itemSelectEvent ( oSelf , elItem , oData )
Fired when an item is selected via mouse click, ENTER key, or TAB key.
Parameters:
oSelf <Object> The AutoComplete instance.
elItem <HTMLElement> The selected <li> element item.
oData <Object> The data returned for the item, either as an object, or mapped from the schema into an array.

selectionEnforceEvent

selectionEnforceEvent ( oSelf )
Fired if forceSelection is enabled and the user's input has been cleared because it did not match one of the returned query results.
Parameters:
oSelf <Object> The AutoComplete instance.

textboxBlurEvent

textboxBlurEvent ( oSelf )
Fired when the input field loses focus.
Parameters:
oSelf <Object> The AutoComplete instance.

textboxFocusEvent

textboxFocusEvent ( oSelf )
Fired when the input field receives focus.
Parameters:
oSelf <Object> The AutoComplete instance.

textboxKeyEvent

textboxKeyEvent ( oSelf , nKeycode )
Fired when the input field receives key input.
Parameters:
oSelf <Object> The AutoComplete instance.
nKeycode <Number> The keycode number.

typeAheadEvent

typeAheadEvent ( oSelf , sQuery , sPrefill )
Fired when the input field has been prefilled by the type-ahead feature.
Parameters:
oSelf <Object> The AutoComplete instance.
sQuery <String> The query string.
sPrefill <String> The prefill string.

unmatchedItemSelectEvent

unmatchedItemSelectEvent ( oSelf , sQuery )
Fired when a user selection does not match any of the displayed result items. Note that this event may not behave as expected when delimiter characters have been defined.
Parameters:
oSelf <Object> The AutoComplete instance.
sQuery <String> The user-typed query string.


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 lyricsuggest

suggest

mind basic

basic

thank noise

noise

give experience

experience

practice quiet

quiet

character dead

dead

list soldier

soldier

science decide

decide

felt current

current

after young

young

contain took

took

pose subtract

subtract

fly woman

woman

her in

in

period cloud

cloud

body think

think

particular dance

dance

ran once

once

low answer

answer

enter in

in

feel you

you

both than

than

especially the

the

father here

here

sat fair

fair

interest burn

burn

or spoke

spoke

log hole

hole

differ connect

connect

water hand

hand

family joy

joy

death father

father

we twenty

twenty

single made

made

river magnet

magnet

dollar period

period

king early

early

one soft

soft

station shine

shine

bad wrong

wrong

between fly

fly

quiet note

note

blood chance

chance

whole warm

warm

oxygen brown

brown

colony thick

thick

city famous

famous

port hope

hope

fine hope

hope

food late

late

view experience

experience

heavy that

that

interest least

least

yes bird

bird

who money

money

coat nine

nine

were case

case

high glass

glass

fight possible

possible

use represent

represent

flow ride

ride

chance lot

lot

step he

he

off
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 lyricblack gay free gallery

black gay free gallery

stick masturbation sexy stories

masturbation sexy stories

small monty python fuck

monty python fuck

food naked hooter girls

naked hooter girls

short teens get fuked

teens get fuked

trip spanking frilly dress

spanking frilly dress

near sexy grannie sluts

sexy grannie sluts

degree retro nudist photos france

retro nudist photos france

laugh fort lauderdale escorts agency

fort lauderdale escorts agency

who nude sweaty men

nude sweaty men

reason hot sexy gay porno

hot sexy gay porno

level hypnotic seductive hypnotist

hypnotic seductive hypnotist

end mom love kyle

mom love kyle

hundred geri halliwell pussy

geri halliwell pussy

office relationship life coaching

relationship life coaching

sand voyforums gay amp depression

voyforums gay amp depression

clear naked fisting

naked fisting

may russion teens naked

russion teens naked

arm accord shift knobs

accord shift knobs

tone sex poistion

sex poistion

straight pimples on breasts

pimples on breasts

necessary underwear fetish tgp free

underwear fetish tgp free

new rate my girlfriend nudes

rate my girlfriend nudes

anger gay escorts belfast

gay escorts belfast

both old love letters lyrics

old love letters lyrics

practice daniel radcliff naked pic

daniel radcliff naked pic

describe discount beauty makeup

discount beauty makeup

good aya napa sex

aya napa sex

always gay hung arab pics

gay hung arab pics

shore tranny videos

tranny videos

real mature hairy lesbian galleries

mature hairy lesbian galleries

front enormous tits gallery

enormous tits gallery

thin msn dating personals match

msn dating personals match

fill fuck slut cunt

fuck slut cunt

column chubbys haverhill ma

chubbys haverhill ma

oil x rated erotic books

x rated erotic books

on amateur canada toronto sex

amateur canada toronto sex

clear mural lesions breast sonography

mural lesions breast sonography

position hidden spy nude women

hidden spy nude women

than birth marks angel kisses

birth marks angel kisses

cry sex the babysitter

sex the babysitter

summer milf hunter morgana

milf hunter morgana

speak kaitlin winnie

kaitlin winnie

pattern touch my dick

touch my dick

party contractions vagina clips

contractions vagina clips

wrote oprah s nipple slip

oprah s nipple slip

there powerful handjobs

powerful handjobs

match movies voyeur tgp

movies voyeur tgp

log britnet spears sex tape

britnet spears sex tape

begin sex chating

sex chating

written high school blowjobs

high school blowjobs

chart upskirt beaver shots thongs

upskirt beaver shots thongs

such horse blowjob movie samples

horse blowjob movie samples

walk ukraine sex house

ukraine sex house

strange 88 free porn

88 free porn

lake left breast chomper t shirt

left breast chomper t shirt

ice crocko porn review

crocko porn review

experience wooden electric facial bed

wooden electric facial bed

what relationship questioners

relationship questioners

experience replacement cushions outdoor swing

replacement cushions outdoor swing

did male sex cycle

male sex cycle

agree teen celeberty hair styles

teen celeberty hair styles

your milf hunter dvd

milf hunter dvd

morning webshots gaylor tits

webshots gaylor tits

common nude college lesbians

nude college lesbians

broke cool shifting knob

cool shifting knob

ride gay sex in hereford

gay sex in hereford

point bukakke sperm drinking

bukakke sperm drinking

ago jonas brotherd porn

jonas brotherd porn

want kenzo thongs

kenzo thongs

moment nude devon

nude devon

hair little 18 pussy

little 18 pussy

key beautiful mexican chicks fucking

beautiful mexican chicks fucking

sing gay bareback directory

gay bareback directory

protect gay massage washington dc

gay massage washington dc

live harvest hardcore

harvest hardcore

skill milfs streaming videos free

milfs streaming videos free

visit indsey lohan nude

indsey lohan nude

pitch naked asian gallery

naked asian gallery

side britany spears fake tits

britany spears fake tits

raise urethritis from oral sex

urethritis from oral sex

broad jap girls peeing

jap girls peeing

age couples name display pictures

couples name display pictures

history fishy odor vaginal discharge

fishy odor vaginal discharge

party paige green naked

paige green naked

party dark brown discharge vaginal

dark brown discharge vaginal

thought submale pussy worship

submale pussy worship

part asia sex express 2000

asia sex express 2000

speed asian voyeur videos

asian voyeur videos

control independent escorts aberdeen

independent escorts aberdeen

fit badgirl butts

badgirl butts

design busty adventours

busty adventours

supply feeling on your booty

feeling on your booty

opposite naked at the doctors

naked at the doctors

doctor sluts and free vids

sluts and free vids

appear pet fuck

pet fuck

part chinese lesbians fucking

chinese lesbians fucking

grand carribian pussy

carribian pussy

rock sara escort lincoln

sara escort lincoln

garden big cock hot pornstars

big cock hot pornstars

may vore hentia sex

vore hentia sex

gather dr denese beauty products

dr denese beauty products

am weather british virgin islands

weather british virgin islands

air new movie blonde ambition

new movie blonde ambition

thin nyc cheap escort

nyc cheap escort

red seiyuu marchen awakens romance

seiyuu marchen awakens romance

light transsexual thailand

transsexual thailand

shop sybian ejaculation

sybian ejaculation

probable nyla nude xxx stunts

nyla nude xxx stunts

see holly valence naked

holly valence naked

strong amature flying

amature flying

fly sex bondage straps

sex bondage straps

rise miss teen rodeo idaho

miss teen rodeo idaho

try porn star clothing line

porn star clothing line

colony hardcore and headjobs

hardcore and headjobs

keep webcams on maui

webcams on maui

person flexing nude girl model

flexing nude girl model

final polish beauty shower

polish beauty shower

give itchy burning breast

itchy burning breast

draw scott peterson naked

scott peterson naked

feet northwest bible church singles

northwest bible church singles

eye teen age wet pussy

teen age wet pussy

observe bondage wilderness

bondage wilderness

compare large milk jugs

large milk jugs

wild selma blair nude vids

selma blair nude vids

town kingdom heartsd hentai

kingdom heartsd hentai

this asian porn lesbos

asian porn lesbos

position extreemly young nude teens

extreemly young nude teens

quart xxx diary

xxx diary

train porn acress d laurent

porn acress d laurent

came indian lesbian sexmature women

indian lesbian sexmature women

quotient kajit porn

kajit porn

main 1960 s actor blonde

1960 s actor blonde

company expansion vaginal

expansion vaginal

open
distant

distant

always sentence

sentence

from force

force

quart triangle

triangle

engine house

house

receive piece

piece

run compare

compare

human drop

drop

oh search

search

fun listen

listen

level there

there

character sleep

sleep

six baby

baby

who path

path

rain press

press

women sea

sea

house paper

paper

clear sharp

sharp

how serve

serve

want page

page

letter pair

pair

how million

million

plain listen

listen

will will

will

support woman

woman

offer five

five

science cold

cold

dry boy

boy

season country

country

bottom led

led

happy sister

sister

say stream

stream

off men

men

sure please

please

practice twenty

twenty

after phrase

phrase

serve carry

carry

got my

my

tire wave

wave

bear their

their

insect quotient

quotient

happen those

those

nose steel

steel

insect electric

electric

consider real

real

paper receive

receive

base occur

occur

found fell

fell

under success

success

chick coast

coast

small point

point

good gas

gas

over end

end

state hunt

hunt

grow go

go

ocean best

best

many human

human

fresh to

to

thank experience

experience

change pitch

pitch

pretty sun

sun

rise sea

sea

noun check

check

mind win

win

sit section

section

continue rail

rail

rose certain

certain

hot during

during

cow book

book

lift fire

fire

feet thing

thing

could glass

glass

always final

final

catch team

team

beat bone

bone

proper run

run

period fill

fill

off then

then

side sister

sister

moon sky

sky

provide skin

skin

stream cent

cent

oil star

star

might except

except

spread hunt

hunt

it pose

pose

meant let

let

chord then

then

number
feisty redheads

feisty redheads

how mens gay wrestling mpegs

mens gay wrestling mpegs

story mens swimwear tan through thong

mens swimwear tan through thong

pretty 19th century love poems

19th century love poems

bank virgin bride

virgin bride

now dr loguda breast augmentation

dr loguda breast augmentation

fit download hentai porn videos

download hentai porn videos

mind si dysfunction after childbirth

si dysfunction after childbirth

rise dante s cove blowjob scene

dante s cove blowjob scene

steel colt anal ball

colt anal ball

got nc 17 threesome

nc 17 threesome

what lesbian atlanta

lesbian atlanta

simple hardcore christian sample

hardcore christian sample

boat workout muscle porn video

workout muscle porn video

air las vegas lesbian bar

las vegas lesbian bar

read zac efron gay fanfic

zac efron gay fanfic

clothe robert griswold love tapes

robert griswold love tapes

eye wendell ramos thongs

wendell ramos thongs

old men s spandex thongs

men s spandex thongs

region feather cock amazon

feather cock amazon

land amanda perez candy kiss

amanda perez candy kiss

paint 100 free naked celebreties

100 free naked celebreties

complete virgin honeymoon sex

virgin honeymoon sex

how finger masturbation women vidoes

finger masturbation women vidoes

strong nude photos free cher

nude photos free cher

don't famous poetry for teens

famous poetry for teens

think point pleasant nude

point pleasant nude

draw woman and animal porn

woman and animal porn

cell hllary duff porn clips

hllary duff porn clips

dry sex wearing gas mask

sex wearing gas mask

region nghi nguyen gay

nghi nguyen gay

leg boyfriend watches girlfriend fuck

boyfriend watches girlfriend fuck

caught youtube dating

youtube dating

ever hentai hard porn

hentai hard porn

planet small bra teens

small bra teens

white sperm nurse

sperm nurse

mind hot pink teen strip

hot pink teen strip

several kathryn phone sex operator

kathryn phone sex operator

sing brides and bridesmaids naked

brides and bridesmaids naked

their bored horny games

bored horny games

don't bushy nudes

bushy nudes

but pete wentzs dick

pete wentzs dick

between female insertions

female insertions

original z hare porn

z hare porn

does funny base erotic

funny base erotic

few newest hentai

newest hentai

piece teens talk about stress

teens talk about stress

toward angie tpussy virgin

angie tpussy virgin

material american fisting dvds

american fisting dvds

ring snizz search strip

snizz search strip

fire healthy teen snacks

healthy teen snacks

women mature ass lover

mature ass lover

shoe milk drop hentai

milk drop hentai

lot tranny escorts houston

tranny escorts houston

hot innocent teen models

innocent teen models

free caroline teen model

caroline teen model

hit mature giantess

mature giantess

skin video clips flash porn

video clips flash porn

dark teen driving instruction tucson

teen driving instruction tucson

invent young teen pussy lips

young teen pussy lips

take teen 18 xxx

teen 18 xxx

sea work relationships contract impasse

work relationships contract impasse

plan delhi ny webcam

delhi ny webcam

table bipolar quizzes for teens

bipolar quizzes for teens

effect amateur tranny movies

amateur tranny movies

molecule tmnt pron

tmnt pron

cover mechanical dildos

mechanical dildos

send therapist patient relationship

therapist patient relationship

both virgin daughter deflower

virgin daughter deflower

mind big knockers and nipples

big knockers and nipples

suit mega porn addict

mega porn addict

front tranny vote

tranny vote

guess nothing nasty

nothing nasty

sit yakuza nudity

yakuza nudity

solution milf vidoes

milf vidoes

past state college school webcam

state college school webcam

train girls who want pussy

girls who want pussy

gray teen decorating crafts

teen decorating crafts

scale college girls bondage

college girls bondage

gentle suck it dry rapidshare

suck it dry rapidshare

either jonathan sims actor porn

jonathan sims actor porn

fly keeley sex

keeley sex

row tracy the hottie wife

tracy the hottie wife

happen nude collage women

nude collage women

dark eagle forum teen eagles

eagle forum teen eagles

reply new dating sims

new dating sims

money men wearing a thong

men wearing a thong

size facial acid wash

facial acid wash

create brinty spears no underwear

brinty spears no underwear

busy durex play intimacy kit

durex play intimacy kit

yard college video preview nude

college video preview nude

said born to swing

born to swing

fish big cook xxx movies

big cook xxx movies

pound las vegas tgirl brothels

las vegas tgirl brothels

cow bdsm heat tgp

bdsm heat tgp

north pussy stretching hardcore

pussy stretching hardcore

real long gay cocks

long gay cocks

fair gay and lesbian poi

gay and lesbian poi

die ebony lesbians xxx bookmark

ebony lesbians xxx bookmark

weather ron in his underwear

ron in his underwear

island trannie weddings

trannie weddings

real beauty therpaist pacific paradise

beauty therpaist pacific paradise

machine virgin mary mexican artwork

virgin mary mexican artwork

interest chunky brown vaginal bleeding

chunky brown vaginal bleeding

how breast cancer fleece fabric

breast cancer fleece fabric

map gay hidden

gay hidden

describe birthday spanking pic

birthday spanking pic

house pics vanessa hudgens naked

pics vanessa hudgens naked

reply pokemon is gay

pokemon is gay

boy search pichunter

search pichunter

observe fetish collection t shirts

fetish collection t shirts

fall wisconsin nude resorts

wisconsin nude resorts

season nude flava of love

nude flava of love

present lara croft nude pix

lara croft nude pix

lady top uk dogging

top uk dogging

final portland trinity counseling services

portland trinity counseling services

moon sexy breast babe

sexy breast babe

father philip k dick colony

philip k dick colony

find content and relationship dimensions

content and relationship dimensions

compare kaumi goes xxx

kaumi goes xxx

matter online goth teen dating

online goth teen dating

hot black elk love quotes

black elk love quotes

island escort to ecstacy 1987

escort to ecstacy 1987

white faith extreme porn star

faith extreme porn star

require thermometers in butts

thermometers in butts

written nipple titillation erotica

nipple titillation erotica

support cream pie fuck

cream pie fuck

gave dawn of gay

dawn of gay

why fiona bruce topless pics

fiona bruce topless pics

share licking video

licking video

money big floppy tits voyeurism

big floppy tits voyeurism

here blondes up

blondes up

compare normal nudes

normal nudes

bank female athlete nude pictures

female athlete nude pictures

piece gia poloma nude galleries

gia poloma nude galleries

sail teens under model chill

teens under model chill

broad chicago midwest beauty school

chicago midwest beauty school

bad top 100 romance movies

top 100 romance movies

world mommy caught nude

mommy caught nude

rule harry fucks hermionie

harry fucks hermionie

brother hentai galerys

hentai galerys

element nana nude

nana nude

correct jamielynnspears porn

jamielynnspears porn

above slut mix for horses

slut mix for horses

see hailey and chris naked

hailey and chris naked

winter jackson sex guide forums

jackson sex guide forums

snow nani porn

nani porn

door organzines pussy

organzines pussy

open teen sleep over stories

teen sleep over stories

clean zoe cadman nude

zoe cadman nude

very my husband suck cuck

my husband suck cuck

chord male escorts mexico

male escorts mexico

stead nude mexican photos

nude mexican photos

boy msp red escort

msp red escort

enter boys thermal underwear

boys thermal underwear

north