Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / Javascript

Goodbye jQuery Templates, Hello JsRender

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
30 Nov 2011CPOL1 min read 16.1K   7   3
jQuery Templates have been discontinued. The new pretender to the throne is JsRender.

A funny thing happened on my way to the jQuery website, I blinked and a feature was dropped: jQuery Templates have been discontinued. The new pretender to the throne is JsRender.

jQuery Templates looked pretty useful when they first came out. Several articles were written about them but I stayed away because being on the bleeding edge of technology is not a productive place to be. I wanted to wait until it stabilized…in retrospect, it was a serendipitous decision.

This time however, I threw all caution to the wind and took a close look at JSRender. Why? Maybe I'm having a midlife crisis; I'll go motorcycle shopping tomorrow.

Caveat, here is a message from the site:

Warning: JsRender is not yet Beta, and there may be frequent changes to APIs and features in the coming period.

Fair enough, we've been warned.

The first thing we need is some data to render. Below is some JSON formatted data. Typically this will come from an asynchronous call to a web service. For simplicity, I hard coded a variable:

JavaScript
var Golfers = [
        { ID: "1", "Name": "Bobby Jones", "Birthday": "1902-03-17" },
        { ID: "2", "Name": "Sam Snead", "Birthday": "1912-05-27" },
        { ID: "3", "Name": "Tiger Woods", "Birthday": "1975-12-30" }
        ];

We also need some templates, I created two. Note: The script blocks have the id property set. They are needed so JsRender can locate them.

XML
<script id="GolferTemplate1" type="text/html">
    {{=ID}}: <b>{{=Name}}</b> <i>{{=Birthday}}</i> <br />
</script>

<script id="GolferTemplate2" type="text/html">
    <tr>
        <td>{{=ID}}</td> 
        <td><b>{{=Name}}</b></td> 
        <td><i>{{=Birthday}}</i> </td>
    </tr>
</script>

Including the correct JavaScript files is trivial:

XML
<script src="Scripts/jquery-1.7.js" type="text/javascript"></script>
<script src="Scripts/jsrender.js" type="text/javascript"></script>

Of course we need some place to render the output:

XML
<div id="GolferDiv"></div><br />
<table id="GolferTable"></table>

The code is also trivial:

JavaScript
function Test()
{
    $("#GolferDiv").html($("#GolferTemplate1").render(Golfers));
    $("#GolferTable").html($("#GolferTemplate2").render(Golfers));

    // you can inspect the rendered html if there are poblems.
    // var html = $("#GolferTemplate2").render(Golfers);
}

And here's what it looks like with some random CSS formatting that I had laying around.

GolfersJsRender.png

Not bad, I hope JsRender lasts longer than jQuery Templates.

One final warning, a lot of jQuery code is ugly, butt-ugly. If you do look inside the jQuery files, you may want to cover your keyboard with some plastic in case you get vertigo and blow chunks.

I hope someone finds this useful.

Steve Wellens

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
EndWell Software, Inc.
United States United States
I am an independent contractor/consultant working in the Twin Cities area in Minnesota. I work in .Net, Asp.Net, C#, C++, XML, SQL, Windows Forms, HTML, CSS, etc., etc., etc.

Comments and Discussions

 
QuestionPretender? Pin
Error536-Dec-11 8:32
Error536-Dec-11 8:32 
QuestionGoodbye jQuery Templates, Hello JsRender Pin
codeben130-Nov-11 23:22
codeben130-Nov-11 23:22 
AnswerRe: Goodbye jQuery Templates, Hello JsRender Pin
Steve Wellens1-Dec-11 5:33
Steve Wellens1-Dec-11 5:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.