Tue Jan 24 04:03:49 GMT 2006
From
/weblog/web
Show difference element display and support at difference browser:
http://www.quirksmode.org/viewport/elementdimensions.html
(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)
Fri Sep 09 04:03:05 GMT 2005
From
/weblog/web
This blog discuss an idea of developing web service via IM (e.g.: google talk ) library.
http://glaforge.free.fr/weblog/?itemid=142
(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 24 09:17:46 GMT 2005
From
/weblog/web/ajax
A nice implement of ajax in content editing (with source), see if it nice to use
http://codinginparadise.org[..]ml-in-place-editing-in-wiki-in-1999.html
(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)
Mon Apr 18 18:14:00 GMT 2005
From
/weblog/web
We can embedded binary in HTML, using
and tag, and it is a RFC, althrough IE not yet supported
http://rifers.org[..]n/2005/4/11/embedding_images_inside_html
(google search)
(amazon search)
Tue Apr 05 08:38:00 GMT 2005
From
/weblog/web
HTML mistake can cause your email address ranking in spam list... according to this...
http://www.petefreitag.com/item/307.cfm
(google search)
(amazon search)