I'm a beginner with Json, I follow this tutorial the example I have written is based on the tutorial, but I do not understand it does not work :
<script language="javascript">
var Jtext="{"variables":["var1","var2","var3"]}";
var Jobj=eval("(" + Jtext + ")");
var j=Jobj["variables"];
document.write(j[0]);
</script>
Any helps...