This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Demo: Using Custom Builder
Demos > Using Custom Builder
My Name
My Address
Unknown Country
Source
<div id="contact">
<div class="name">My Name</div>
<div class="address">My Address</div>
<div class="country">Unknown Country</div>
</div>
$('#contact')
.item({
name: "Rizqi Ahmad",
address: "Somestrasse 50, Hamburg",
country: "Germany"
})
.chain({
'.name': 'Hello, My Name is {name}',
'.address': 'My address is {address}',
'.country': 'It is in {country}'
});






