-moz-user-focus property
Specifies whether the element can have focus.
This property is the same as the user-focus property in the CSS3 declaration.
JavaScript page for this property: MozUserFocus. You can find other example(s) there. |
Possible values:
One of the following values:
Default. Use the default focus behavior for the element. | |||||||
Seems to be like 'none'. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
The element can not receive focus. | |||||||
Seems to be like 'auto'. |
Default: auto.
Example HTML code 1:
This example illustrates the use of the -moz-user-focus property:
|
||||
<head> <style> .example { -moz-user-focus: none; /* it doesn't seem to working so we need some workaround */ -moz-user-select: none; -moz-user-input: disabled; } </style> </head> <body> <input type="text" onfocus="alert ('Focus on 1. object')" value="Press tab to focus" /> <input type="text" onfocus="alert ('Focus on 2. object')" class="example" value="This element cannot receive focus" /> <input type="text" onfocus="alert ('Focus on 3. object')" value="Press tab to focus" /> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by tags:
a, abbr, acronym, address, b, bdo, big, blink, blockQuote, body, caption, center, cite, code, dd, del, dfn, dir, div, dl, dt, em, fieldSet, font, form, H1, H2, H3, H4, H5, H6, html, i, ins, isIndex, kbd, label, legend, li, marquee, menu, ol, optGroup, option, p, pre, s, samp, small, span, strike, strong, sub, sup, table, td, textArea, th, tr, tt, u, ul, var
Related pages:
External links:
User Contributed Comments