public marks

PUBLIC MARKS from ycc2106 with tags code & javascript

2008

2006

codefetch{

by 18 others
Search the source code of programming books.

My Del.icio.us Recommendation Snippet

"My Del.icio.us Recommendation Snippet" is a recommendation link list generator extracted from site owner's bookmarks archived in del.icio.us. If you tell your del.icio.us ID to the site, you can get the site owner's bookmarks as a recommendation. While creating your recommendation list, your recent del.icio.us posts and associated tags automatically used as your preference information.

Live Thumbnails: Watch 'em Grow

by 1 other
This is pretty much what a normal gallery page would look like, which is good — People browsing with JavaScript disabled will still have an OK experience — but there are two important differences here.

JavaScript Tabifier

by 10 others
Automatically create an HTML tab interface.

No click links

by 2 others
No-click-links are link which you don't have to click. code for the link: <a href="javascript:alert('link clicked')">link</a> Nothing special there, all the code is done in the noclick.js script.

Truncate HTML Text with JavaScript Automatically

This article describes what I think is a clever way of automatically truncating the text of a paragraph: * Truncate the text to a length of your choosing * Do not truncate in the middle of a word (only on a word boundary) * Keep the page search-engine friendly by publishing the complete non-truncated text * Add an ellipsis to the end of the truncated text * Make the ellipsis a link that expands the text to full length. Once expanded it cannot be collapsed again (but that functionality could be added just as easily) * Assumes that the content is plain text with no markup.