1
vote
How do I split this string with javascript?
Something like:
var divided = str.split("/~/");
var name=divided[0];
var street = divided[1];
Is probably going to be easiest
…
0
votes
Javascript drawing library?
Depending on how cross-browser you need to be and your goal of doing the output, you might look into the Canvas element and the related javascript.
…
0
votes
Javascript: Trigger action on function exit
You can do a synchronous xhr. This would cause the entire UI block for the duration of the call (no matter how long it might take).
…
0
votes
Why does my spinner GIF stop while jQuery ajax call is running?
Are you doing a synchronous call or asynchronous call? synchronous calls do cause the browser to seemingly lock up for the duration of the call. The other possibility is that the system is very b …
0
votes
How do i submit an ajax request before the page is loaded
Why not check before the user is even given the html?
If you're just running static HTML w/ Javascript, I would suggest using JQuery and u …
0
votes
JavaScript: How to detect that the internet connection is offline?
Another question is what are you going to do about the connection being down? Check out Gears
…
1
vote
Session management in GWT without using Java on the server?
Without knowing how you're doing your RPC is working, its hard to give good advice.
If your AJAX service requires a user to be authenticated (IE have a valid session), it is ok to just send …
