Uncaught SyntaxError: Unexpected token ILLEGAL

Posted by sathis on Stack Overflow See other posts from Stack Overflow or by sathis
Published on 2010-05-18T07:31:34Z Indexed on 2010/06/13 23:22 UTC
Read the original article Hit count: 1155

Filed under:
|
|

May i know whats wrong inside this.I am new world of programing ..So if you help me it would be wonderful.The error comes on the line

arr[${i.count-1}][1]=${employee.email};

Awaiting for your response.The entire Code as follows..

$(function() {
var arr = new Array();

   arr[0]=new Array(4);
   arr[0][0]=sathis;
   arr[0][1][email protected];
   arr[0][2]=namakkal;
   arr[0][3]=21;

   arr[1]=new Array(4);
   arr[1][0]=ganesh;
   arr[1][1][email protected];
   arr[1][2]=karaikudi;
   arr[1][3]=22;

   arr[2]=new Array(4);
   arr[2][0]=karthik;
   arr[2][1][email protected];
   arr[2][2]=trichy;
   arr[2][3]=25;

 var str="<table><tr><th>Name</th><th>Email</th><th>City</th><th>Age</th></tr><tr><td>";

 $("#emp_name").change(function() {
     var i=$(this).val();
    str=str+arr[i-1][0]+"</td><td>"+arr[i-1][1]+"</td><td>"+arr[i-1][2]+"</td><td>"+arr[i-1][3]+"</td><tr></table>";
    $("#viewer").html(str);
    alert(str);
    });


});

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about token