Search Results

0
votes

innerHTML manipulation in JavaScript

Set the element's CSS height to 'auto' every time you update innerHTML. …
0
votes

Checking to see if a DOM element has focus.

There are several things in IE, that does the trick: If focusing element has different z-index - you can quickly set z-index to that of currently focused element (possibly setting …
0
votes

Clear extJS combo value when text is cleared or doesn’t match.

Just an idea. In a 'keydown' event do 'validate()' on each keystroke. Then use 'valid' and 'invalid' events to perform an appropriate action (f.e. setValue('')). …
1
vote

How to give a page focus again so that the space bar pages down in FF?

It looks like you need to blur YUI button element. Or do something with tab order between whole document and the YUI button. So - not to focus() document, but to blur() YUI button. …