0
votes
Represent a query string in JSON
"?qsparam=" + escape("[{id:123,type:'test'},{id:154,type:'another'},...]")
…
2
votes
Javascript close alert box
As mentioned previously you really can't do this. You can do a modal dialog inside the window using a UI framework, or you can have a popup window, with a script that auto-closes after a timeout.. …
2
votes
weird IE 7 javascript problem
It's worth noting that some libraries such as prototype.js extend Array, so that they have additional properties beyond the internal indexes. This breaks for x in y notation beyond, as other menti …
0
votes
Javascript registering event to object
I'd suggest using the andvanced event registration model outlined here.
uploadAction.addEventListener('s …
3
votes
How to determine latency of a remote server through the browser
All you really need is the time from the connection start, to the time of the first readystate change...
function getPing() {
var start;
var client = getClient(); // xmlhttprequest o …
1
vote
Back Button and Refresh with AJAX
essentially, you need to use & monitor the hash portion of the url...
http://.../path?parms#hashpart
Whan you change the hash, iirc window.location.hash , it …
3
votes
Detecting idle time in JavaScript elegantly.
Similar to Iconic's solution above (with jQuery)...
//when the document is loaded
$(function(){
//create an event handler for the mousemove
var preLoadTimer;
$(this).mousemov …
0
votes
What is a reliable way to calculate actual (web) page loadtime
psuedo-code.
server marks start of processing the request.
server sends the output.
script tag, marks start time.
rest of html markup.
client script , with server proce …
2
votes
How to not submit a form if validation is false
Okay, some of the other solutions will have a lazy fail... you probably want all your validation to run, so that all errors are displayed. The presumption is that your validation methods will retu …
0
votes
ActiveXobject error in javascript
Check to make certain that the COM object you are trying to create is installed, and marked as safe for scripting. Confirm your security settings in IE. Beyond this, ActiveXObject is only availab …
0
votes
onblur ajax not calling the callback function
Sometimes if you refresh the page while stepping in the firebird debugger, scripts stop in that tab, I often have to open the page in another tab.
…
0
votes
Events work in Firefox/Chrome but fail in IE
Generally an abstraction framework, like jquery or prototype is your best bet. They handle the browser differences for you. Also, you can subscribe to your events at a higher level... it's less e …
-1
votes
Is there a way to use jQuery.getScript inside the AIR application sandbox?
You should use the native API to retreive the text then eval() the text.. this will have the same general effect... probably want to do eval.call(window, scriptText) to make sure your namespacing …
0
votes
ui Dialog works once in IE
move the open into the callback...
$('#dialog').html(data).dialog('open');
…
2
votes
Good Editors for Web Development on OS X?
I'm partial to VS on Windows (via VMWare), but Aptana (based on Eclipse) is pretty nice.
…
