0
votes
4answers
124 views
Make Web Application Accessible
What things have to be done before I can honestly tell myself my web application is accessible by anyone? Or even better, convince Joe Clark. I don't have any video or audio to worry about, so I kn …
18
votes
13answers
20k views
Javascript Post Request like a Form Submit
I'm trying to direct a browser to a different page. If I wanted a GET request, I might say
document.location.href = 'http://example.com/q=a';
But the resource I'm …
1
vote
Javascript Post Request like a Form Submit
One solution is to generate the form and submit it. One implementation is
function post_to_url(url, params) {
var form = document.createElement('form');
form.action = url;
…
2
votes
Reserved Keywords in Javascript
To supplement benc, see Standard ECMA-262. These are the official reserved words, but only a p …
