Search Results

0
votes

innerHTML manipulation in JavaScript

Set the element's CSS height to 'auto' every time you update innerHTML. …
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 …
2
votes

Minimum time between subsequent AJAX calls

We have a different solution for AJAX polling in our chat: The request is sent to the server and polls for the data on the server side in cycle with very short delay intervals (like …
1
vote

What is the best way to upload a folder to a website?

Here is pure JS solution using ExtJS library …
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 …
0
votes

Internet Explorer and the case of the Very Strange iFrame behaviour

I think it's somehow related to shim technique issues in MS IE. IFRAME is windowless element, so z-index of IFRAME may be not in sync with the outline DIV z-index. Please see …
2
votes

Only load HTML into an IFRAME

Set 'Content-type' for that HTML page to text/plain. …
0
votes

Problems using window.opener

Try following: parent.window.updateLayer(); in a separate <script> tag. I'm not quite sure whether it works with both src=some.js and i …