> So here is finally my problem. I can just get numbers or bools of this JSON
> document. When i am trying to get a string e.g. nothing happens. No fanncy
> things, and no errors in my firebug console. I think its a problem with the
> each() function. I tried everything i could imagine till now. But nothing
> seems to work. Is there somone in this mailinglist who could help
> me...please?


What exactly are you expecting this to do?  Essentially, your code is
doing the following:

var someString = "testing".

$(someString).each(function() ...

"each" is not going to iterating anything because there is nothing to
iterate (unless you have <testing> elements).

Reply via email to