Search Results

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 …
0
votes

Convert a JSON object to nested form fields?

obj = {'a':{'b':{'c':'1200'}}}, 'z':'foo', 'bar':{'baz':'1', 'id':2}} is internally equivalent to {['a']['b']['c']:'1200', ['z']:'foo', ['bar']['baz']:'1', …
0
votes

Showing page load progress with JavaScript

If preparation for the file takes less than default timeout of AJAX request, you may start AJAX request, displaying "Loading..." message to user. AJAX call then checks for file's availability, and …
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. …
0
votes

Join 2 ‘threads’ in javascript

Something like this (schematic): registerThread() { counter++; } unregisterThread() { if (--counter == 0) fireEvent('some_user_event"); } eventHandler_for_some_user_event() { …
0
votes

Improving performance of jquery/javascript webpage logic.

bgcolor = GetInputFieldColor(dte, false); SetBackgroundColor(day, bgcolor); I'd suggest to join Get... and Set... functions into one, which obta …
0
votes

How can I reduce page reflows when using JavaScript widgets?

Wrap everything into invisible <div>. Then make it visible on page complete load (using onLoad event). …
0
votes

Internet Explorer and <select> tag problem

You should use event.stopPropagation() while in <select>, or cancelBubble() in <select> element itself. …
1
vote

How can i unserialize a string?

What about to serialize (instead of your string 1>2>3>>4#5#6>7) into JSON form like this: {'1': {'2': {'3': {'4': true}}}, '5': true, '6': {'7': true}} …