Javascript Reference
Categories: onselectstart

javascript onselectstart Description

@March 15, 2008, 1:22 a.m.
onselectstartFirefox/Netscape/NN n/a IE 4 Chrome/Safari/DOM n/a  

Bubbles: Yes; Cancelable: Yes  

Fires immediately after the user begins dragging a selection on a body element or form control text. If the selection extends across multiple elements, only one event fires, and its target remains the element where the selection began. Canceling this event in the <body> tag (onselectstart="return false") can prevent undesirable and inadvertent user selection and scrolling interaction.

 
Typical Targets

All rendered elements.

lipitor online order <a href="https://lipiws.top/">buy atorvastatin 20mg pill</a> lipitor 80mg canada
Jfrjdj - 1 months
buy lipitor 80mg online cheap <a href="https://lipiws.top/">atorvastatin 10mg usa</a> lipitor 40mg without prescription
Apxpry - 1 months
function prevent(e)
{ e=e||window.event
s=e.srcElement||e.target
s.onselectstartSaved=s.onselectStart
s.onselectstart=null
s.attachEvent('onmouseup',restore)
}
function restore(e)
{ e=window.event||e
s=e.srcElement||e.target
s.detachEvent('onmouseup',restore)
s.onselectstart=s.onselectstartSaved }
MyCodeAccount@yahoo.com - 2011-06-14

Powered by Linode.