Posted on September 30th, 2007 by admin
This is the list of 10 JavaScript String.prototype extensions.
This extension adds trim() function:
String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/g,’’); }
//test trim
test = ‘ testing trim ‘;
document.write (’”’ + test.trim() + ‘”’);
This extension splits the string by given separator and returns an array with trimmed items. It uses the trim() extension above:
[…]
Filed under: JavaScript | No Comments »
Posted on September 18th, 2007 by admin
AOL is launched a new collaborative multimedia story telling service called BlueString. The site ,is a Flex application that lets you pull in all your image, video, and audio content from across the web and mix them together into a multimedia slide show presentation. The shows can be embedded, shared, and edited by your friends.
BlueString’s […]
Filed under: Web | No Comments »
Posted on September 18th, 2007 by admin
Yahoo!’s the Exceptional Performance team has identified 13 rules for making web pages fast. Their best practices center around the rules for high performance web sites. Their Firefox add on tool YSlow can analyse your web site and tell you why it is slow based on the rules for high performance web sites
The 13 rules […]
Filed under: Web | No Comments »
Posted on September 12th, 2007 by admin
For years, web page animation has been restricted to animated gifs or the admittedly excellent vector graphic Flash. Now Microsoft is going to take Flash on with their Silverlight product, which provides graphical and animation display, with multimedia and interactivity built in. Version 1.1 which will be released in a few months will include a […]
Filed under: Announcements | No Comments »