Tag: javascript

Using Dynamic JavaScript Source Reference for Embedded Content and Syndication

As blogs and RSS feeds gain more popularity amongst the mainstream, content aggregation and integration seems to be the next logical step in the right direction. Most of the content integrating technology till date has been focused on the “Back-End” – XML-RPC, SOAP, RSS feeds etc. We’ll show a very easy, yet very effective, way of enabling content integration using dynamic JavaScript.

Optimizing JavaScript for Execution Speed

JavaScript can benefit from many of the same speed-optimization techniques that are used in other languages, like C1,2 and Java. Algorithms and data structures, caching frequently used values, loop unrolling and hoisting, removing tail recursion, and strength-reduction techniques all have a place in your JavaScript optimization toolbox. However, how you interact with the Document Object Model (DOM) in large part determines how efficiently your code executes.

Back To Top