javascript Programming Glossary: makeunselectable
Prevent selection in HTML http://stackoverflow.com/questions/2326004/prevent-selection-in-html do this recursively for an element's descendants function makeUnselectable node if node.nodeType 1 node.setAttribute unselectable on var.. unselectable on var child node.firstChild while child makeUnselectable child child child.nextSibling makeUnselectable document.getElementById..
Making things unselectable in IE http://stackoverflow.com/questions/4448671/making-things-unselectable-in-ie do this recursively for an element's descendants function makeUnselectable node if node.nodeType 1 node.setAttribute unselectable on var.. unselectable on var child node.firstChild while child makeUnselectable child child child.nextSibling makeUnselectable document.getElementById..
Is there a way to make text unselectable on an html page? [duplicate] http://stackoverflow.com/questions/69430/is-there-a-way-to-make-text-unselectable-on-an-html-page do this recursively for an element's descendants function makeUnselectable node if node.nodeType 1 node.setAttribute unselectable on var.. unselectable on var child node.firstChild while child makeUnselectable child child child.nextSibling makeUnselectable document.getElementById..
|