0
votes
innerHTML manipulation in JavaScript
Set the element's CSS height to 'auto' every time you update innerHTML.
…
-1
votes
Javascript callback when IFRAME is finished loading?
You can use observe() method of HTMLElement to set the 'load' handler:
iFrameObj.observe('load', function(e) {....});
Also, I'd suggest to set an inner spanning DI …
0
votes
How do I constrain the size of a tooltip/popup-style DIV so that it doesn’t trigger scrollbars on the page
It could be possible to setup a ghost transparent DIV exactly of you whole page/viewport size. Then you can 'stick' a tooltip DIV within it, providing CSS float:right attribute. That would give you …
1
vote
How to pass arguments to addEventListener listener function?
someVar value should be accessible only in some_function() context, not from listener's.
If you like to have it within listener, you must do something like:
…
0
votes
Handling events from HTML anchor tags in ExtJS
As you might know, HTML tag accepts ANY named attribute. So you may create some specifically called attribute(s) and pass any value(s) to them (f.e. my-bogus-param="something"), By thi …
2
votes
