I'm trying to return some data from twitter's JSONP results. I'm then trying to customize the response and prepend my own "ID" parameters so I can use it as a key in a key/value pair when I transform it back into JSON. I'm kind of confused as to why the jQuery prepend function is not working for this case.

here is a short bit of code i'm working with

$.getJSON('http://api.twitter.com/1/statuses/user_timeline.json?user_name=twitterapi&callback=?', function(data) {
        $.each(data, function(i) {
        $(data[i].id_str).prepend("id:"); //foobar, doesn't prepend anything
    });

PS. I know this isn't the formatted result I ultimately want but the question is about prepending.

link|improve this question

79% accept rate
feedback

2 Answers

up vote 1 down vote accepted

How does that json result look like?
Aren't you trying just to do some string concatenation? Maybe this helps:

"id:"+data[i].id_str;
link|improve this answer
yep, just did this before i checked the page again. This helped solve the issue I was having. – Chamilyan Aug 1 '11 at 21:20
feedback

data[i].id_str does this string contain "#". If not then you need to set append "#" to it in order to find the element.

link|improve this answer
i.e. $("#" + data[i].id_str).prepend("id:"); – normanthesquid Aug 1 '11 at 21:01
Yes, that should work. – ShankarSangoli Aug 1 '11 at 21:02
@egfx - Did it helped you? – ShankarSangoli Aug 1 '11 at 21:15
no, not really. The answer I marked was actually the real problem. I didn't really have to do prepend afterall. – Chamilyan Aug 1 '11 at 21:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.