RSS feed [root] /weblog /web




login:

password:

title search:




 


Thu Apr 06 06:33:48 GMT 2023

web


Should contain HTML and CSS resource


(google search) (amazon search)
second
download zip of files only

Sun Mar 12 10:42:16 GMT 2006 From /weblog/web/ajax

update form dynamically


An example of updating form dynamically: http://ajaxian.com/archives/sneaky-submissions-supported-by-ajax

(google search) (amazon search)


Mon Feb 06 03:53:56 GMT 2006 From /weblog/web/script

Closing IE windows without promote


http://jroller.com/page/coreteam?entry=close_an_ie_window_without

(google search) (amazon search)


Fri Feb 03 08:53:19 GMT 2006 From /weblog/web

Technique of hidden email at webpage


More than I think!

http://www.csarven.ca/hiding-email-addresses

(google search) (amazon search)


Tue Jan 24 12:51:55 GMT 2006 From /weblog/web/script

firefox new javascript console


Look quite nice: https://addons.mozilla.org[..]moreinfo.php?id=1843&application=firefox

(google search) (amazon search)


Tue Jan 24 04:03:49 GMT 2006 From /weblog/web

CSS element dimensions


Show difference element display and support at difference browser: http://www.quirksmode.org/viewport/elementdimensions.html

(google search) (amazon search)


Tue Jan 17 10:52:54 GMT 2006 From /weblog/web

apache htaccess reference


A very comprehensive reference
http://brainstormsandraves.com/archives/2005/10/09/htaccess/

(google search) (amazon search)


Tue Jan 03 09:51:48 GMT 2006 From /weblog/web

cross browser


Pretty good reference: http://www.jlamp.com/blog/2006/01/01/1136187478084.html

(google search) (amazon search)


Mon Dec 19 09:35:45 GMT 2005 From /weblog/web/script

auto scroll html select list


we can use script to update the select list and make it scroll automatically

http://radio.javaranch.com[..]pascarello/2005/12/14/1134573598403.html

(google search) (amazon search)


Wed Dec 07 04:11:11 GMT 2005 From /weblog/web/script

profiling javascript


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)


Tue Dec 06 11:19:57 GMT 2005 From /weblog/web/script

xml


Nice~

http://www.weiqigao.com[..]ml_comes_to_firefox_1_5s_javascript.html

(google search) (amazon search)


Fri Nov 25 18:58:58 GMT 2005 From /weblog/web/script

copy array


A better way to copy array in javascript

http://dhtmlkitchen.com/news/gen/?permalink=copyArrays.html

(google search) (amazon search)


Fri Nov 25 12:19:56 GMT 2005 From /weblog/web/script

javascript memory leak


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)


Wed Oct 19 06:52:55 GMT 2005 From /weblog/web/ajax

ajax showcast


Nice to take a look and get idea of how to use this technology

http://www.aventureforth.com/2005/09/06/top-10-ajax-applications/
http://www.aventureforth.com[..]5/09/16/top-10-ajax-applications-part-2/

(google search) (amazon search)


Fri Oct 14 08:08:14 GMT 2005 From /weblog/web/script

javascript automatic build


nice trick and I luckly have a mac

http://blogs.codehaus.org[..]tinuous_integration_with_javascript.html

(google search) (amazon search)


Wed Oct 12 07:04:55 GMT 2005 From /weblog/web/script

package exe from ruby script


Look nice

http://abstractplain.net/blog/?p=838

(google search) (amazon search)


Tue Sep 20 06:54:46 GMT 2005 From /weblog/web/script

peeve with javascript


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

web service via IM


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

library to prevent embed javascript in html


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

ajax in 1999


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

javascript overloading


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

embed binary in html


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

how html in email affect deliverability


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)