Sun Mar 15 23:46:47 GMT 2020
From
/weblog/web/script
How I made a 3D game in only 2KB of JavaScript -
http://frankforce.com/?p=7427
(google search)
(amazon search)
Mon Mar 17 17:25:33 GMT 2008
From
/weblog/web/script
Some simple rule:
If you use user authentication, make sure you check for it on the request page!
Check for SQL Injections
Check for JavaScript Injections
Keep the Business Logic on the server!
Don't assume every request is real!
Check the data with validation!
Look at the request’s header information and make sure it is correct
http://radio.javaranch.com[..]pascarello/2005/11/16/1132198968655.html
(google search)
(amazon search)
Wed Jul 05 04:17:43 GMT 2006
From
/weblog/web/script
The downloadable one is only trim thing like white spaces and new line, but the online only one actally obfuscate your javascript
http://blog.taragana.com[..]how-to-compress-javascript-files-safely/
(google search)
(amazon search)
Wed Dec 07 04:11:11 GMT 2005
From
/weblog/web/script
Most of the cast javascript are pretty fast to execute, but sometime you still need to profile and tuning, this is a good resource about this area
http://www.xml.com/lpt/a/2005/11/30/tuning-ajax-performance.html
(google search)
(amazon search)
Fri Nov 25 12:19:56 GMT 2005
From
/weblog/web/script
Worth to take a look, and it don't look like a browser specific problem
http://ajaxian.com/archives/2005/11/quirksmode_memo.html
(google search)
(amazon search)
Tue Sep 20 06:54:46 GMT 2005
From
/weblog/web/script
According to author and the comments they don't like javascript in following:
1) null behaviour
2) exception behaviour
3) arrays behaviour
http://www.redhillconsulting.com.au[..].com.au/blogs/simon/archives/000280.html But for me, poor namespace support is the biggest one.
http://www.jroller.com[..]?anchor=the_javascript_namespace_problem
(google search)
(amazon search)
Wed Sep 07 04:19:14 GMT 2005
From
/weblog/web/script
Instead of:
<li>
<a onclick="this.parentNode.removeChild(this)" href="#">Click me to delete me</a>
</li>
Your markup remains:
<ul id="example">
<li>
>a href="/someurl">Click me to delete me
</li>
</ul>
Then, in a separate script, you can provide the behavior using CSS selectors.
var myrules = {
'#example li' : function(el) {
el.onclick = function() {
this.parentNode.removeChild(this);
}
}
};
Behaviour.register(myrules);
http://www.firelord.net/modifiedbehavior
(google search)
(amazon search)
Wed Aug 17 04:31:29 GMT 2005
From
/weblog/web/script
In contrast to java, javascript don't support method overloading, JavaScript supports only allow a single function to use a specific name on a page.
http://www.woodger.ca/jvjs.htm
(google search)
(amazon search)