5
votes
Hardest javascript debugging problem ever
Do you at least know what object is null? Do you know what line?
If not, you could start by commenting out code until the problem goes away. Then start bringing it back piecemeal until the …
0
votes
0
votes
How to gracefully handle iframe breaker?
Are you talking about an embedded iframe setting top.location? There's no way to prevent that as far as I know.
If you're worried about the contents of an iframe doing something you don't w …
0
votes
Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool?
In Firebug, you should be able to see that script after the page is loaded and the script is injected. When you do, you can set a breakpoint in the appropriate place, and it'll be preserved when yo …
0
votes
Passing variable with javacript function
If you have access to the variable in question when you set the click handler,
detLink.onclick = function() {
GetDetails(foo);
}
If you don't,
…
1
vote
Tips on rendering html on client
Try to deliver as much state as you can in the initial request, so you don't have to round-trip before you show any data to the user.
Measure how long it's taking to show a working UI to yo …
1
vote
Validating user input with JavaScript
You can use the onKeyDown event. If you return false from your event handler, no key press event is fired and the key is "eaten".
Here are the docs from Sun: …
2
votes
What is the most straightforward GWT workaround for same origin policy restriction (trying to query google maps api)?
Why not just use the GWT Maps API? I think you can use the …
0
votes
JavaScript code improvement
You could create an addScriptElement() function to make this way less repetitive.
…
0
votes
Sending large of amounts of data cross domain
Are you talking about making a page like:
<html>
<body>
<iframe id='a' src='www.domaina.com'></iframe>
<iframe id='b' src='www.domainb.c …
0
votes
Quickest way to pass data to a popup window I created using window.open()?
Assuming it's the same domain, do what Bart said. If it's a different domain, you can use the hash tag to pass some data, eg …
0
votes
Sending messages to server with Comet long-polling
Just use XHR to do a POST.
One problem is on some browsers you can only have 2 (or some number n) concurrent XHR connections per server. You can work around this by making a queue that lets …
