javascript - JS and SyntaxError: identifier starts immediately after numeric literal -


looking here, getting error script:

error:

syntaxerror: identifier starts after numeric literal

call_logs(140213fs01)

script:

"aocolumndefs": [                              {                    "atargets": [ 3 ], // column target                    "mrender": function ( data, type, full ) {                        //alert (json.stringify(full));  //************show contents of object                       var str = full[2];                      return '<a href="#;" onclick="call_logs('+str+')"; >' + data + '</a>';                     }                  }             ] 

......

function call_logs(id){        alert("call logs funct :"+id);  } 


Comments

Popular posts from this blog

Fail to load namespace Spring Security http://www.springframework.org/security/tags -

sql - MySQL query optimization using coalesce -

unity3d - Unity local avoidance in user created world -