javascript 1

TwitterFacebook
Get flash to fully experience Pearltrees
ajax

http://nodejs.org/ var net = require ( 'net' ); var server = net . createServer ( function ( socket ) { socket . write ( 'Echo server \r\n ' ); socket . pipe ( socket ); } ); server . listen ( 1337 , '127.0.0.1' ); A guided introduction to Node

node.js

A re-introduction to JavaScript - MDC

Microsoft released a mostly-compatible version of the language called JScript with IE 3 several months later. Netscape submitted the language to Ecma International , a European standards organization, which resulted in the first edition of the ECMAScript standard in 1997. The standard received a significant update as ECMAScript edition 3 in 1999, and has stayed pretty much stable ever since. The fourth edition was abandoned, due to political differences concerning language complexity. Many parts of the fourth edition formed a basis of the new ECMAScript edition 5, published in December of 2009. This stability is great news for developers, as it's given the various implementations plenty of time to catch up. https://developer.mozilla.org/en/a_re-introduction_to_javascript
http://www.aptana.com/reference/html/api/JSKeywords.index.html Shifts the first item in binary representation the value of the second item of bits to the right, discarding bits shifted off, and assigns the new value to the first item. Shifts the first item in binary representation the second item of bits to the left, shifting in zeros from the right, and assigns this total to the first item. Shifts the first item in binary representation the value of the second item bits to the right, discarding bits shifted off, shifting in zeros from the left, and assigns this total to the first item.

JavaScript Keywords Reference Index

The whole world is going to widgets. This overused, overhyped term refers to third-party code one places on their website or blog in order to display such things as Flickr photos, Twitter status, or iTunes playlists. Everybody and their mom is putting out widgets these days, and although only about 1% of them are useful or interesting, they are an important new distribution mechanism that is changing the way companies think about syndication. But there is a big problem with widgets: they slow down the sites that use them . http://www.mikeindustries.com/blog/archive/2007/06/widget-deployment-with-wedje

Mike Davidson: How To Keep Widgets From Slowing Down Sites: WEDJ

Tip 1: Cache your objects! One of the best kept secrets to boosting script performance is to cache your objects. Often times, your script will repeatedly access a certain object, as in the following demonstration: for (i=0;i In the above, the object " document.images" is what's accessed multiple times.

Performance tips for JavaScript

http://www.javascriptkit.com/javatutors/efficientjs.shtml

Harry Maugans » How to Create an Animated, Sliding, Collapsible

In this tutorial, we will create functions to slide DIVs up and down. It supports multiple animations happening simultaneously, as well as a variable animation length. It’s also time-based, rather than increment based, so it’ll animate the same speed on most computers; old computers won’t take 10 minutes for a DIV to slide down. http://www.harrymaugans.com/2007/03/06/how-to-create-an-animated-sliding-collapsible-div-with-javascript-and-css/
http://jquery.com/

jQuery: The Write Less, Do More, JavaScript Library

Congratulations! You just ran a snippet of jQuery code. Wasn't that easy? There's lots of example code throughout the documentation on this site. Be sure to give all the code a test run to see what happens.
Event Handling Back in the heady days of Web 1.0, if you wanted to have an object on the page react to something like a click, you would simply go ahead and attach an onclick attribute. This was easy and understandable, but much like the font tag or the style attribute, it has the downside of mixing behaviour or presentation in with our content.

24 ways: Writing Responsible JavaScript

http://24ways.org/2006/writing-responsible-javascript
http://christianheilmann.com/2005/06/21/six-javascript-features-we-do-not-need-any-longer/ Working largely with b2b sites and restricted environments, I never knew it was out of fashion. It is a tool, much like a shovel, a screwdriver or a towel. While a towel is handy in every situation, as every HHGTTG reader knows, JavaScript has its place and its merits, but also its limitations and places it shouldn’t be applied to. You can use a screwdriver to screw in screws or to clean your ears, however, the latter needs real skill, determination and a lack of fear of injuring yourself.

Six JavaScript features we do not need any longer - Wait till I

http://www.webmonkey.com/

Webmonkey: The Web Developers Resource

Microsoft wants in on the drive to speed up the web. The company plans to submit its proposal for a faster internet protocol to the standards body charged with creating HTTP 2.0. Not coincidentally, that standards body, the Internet Engineering Task Force (IETF), is meeting this week to discuss the future of the venerable Hypertext Transfer Protocol, better known as HTTP. On the agenda is creating HTTP 2.0, a faster, modern approach to internet communication.
10) addEvent() Surely a staple to event attachment! Regardless to what version you use written by whatever developer, it does what it says it does.

Top 10 custom JavaScript functions of all

MooTools code respects strict standards and doesn't throw any warnings. It's extensively documented and has meaningful variable names: a joy to browse and a snap to understand.

mootools.net

Test short bits of JavaScript, bookmarklets , or user scripts . (For longer bits of JavaScript, try the JavaScript development environment too.) Use the shell like you would use the home screen of a calculator such as a TI-83. Alt+M gives you easy access to math functions such as sin and pow .

JavaScript Shell