TAG: Javascript

Potential Game-Changer: TV Recommendations on Live.com

In what can be described as a potential game-changing piece of software, the Live.com team at Microsoft has demoed a new widget gadget that allows users to get personalized TV show recommendations and then record them remotely with the click of a button…on their home PC Media Center. The demo occurred at the annual Search Champs Conference held in Redmond.

Here’s a screenshot…

Continue Reading: Potential Game-Changer: TV Recommendations on Live.com

Ajax Pushes Microcontent Out the Door

By now you’ve heard why Ajax is great for web-based applications:

  • It is standards-based
  • It is degradeable with unsupporting browsers
  • It is relatively easy to implement
  • The benefits of a one-screen interface (no disruptions for page refreshes)

The Side Benefit of Ajax

But there’s another side benefit, that I think might be as influential as any of the above. When you build an Ajax application, you need to break down your server calls into smaller chunks. You’re no longer requesting complete web pages when you hit your server, you’re requesting information via a simplified API that you create (something as simple as a PHP script, perhaps).

This is yet another step toward microcontent, or pieces of data that live on their own and are called together to form applications screens or web pages. If you weren’t planning on accessing your content in this way before you decided to use Ajax techniques, you will definitely have to if you move that way.

This seems to be an overall trend, however. First we gain granular access to our own content for our own needs, and then we provide public access to others after we see how useful it is.

AJAX Pages: Embedded Javascript

This has the potential to be very popular: a project called Ajax pages has just been released, with the intent to allow people to embed Javascript code in HTML like we do with PHP, ASP, and JSP.

It’s not server-side, though, from what I can tell. It’s simply a way to manipulate things client-side in a familiar way.

Here’s an example:

<html>
<body>
<% var hello = "Hello World"; %>
<%=hello%>
</body>
</html>

Check out the tutorial to see how it works.

|