[jQuery] Re: Issue with getJSON function... I get the JSON file but I can't do anything with it !! Help please

2009-08-30 Thread lpdahito
down into it's Key/Value pairs, > Firefox + Firebug will show you that > > On Aug 28, 6:55 pm, lpdahito wrote: > > > > > Hi guys, > > I have a problem retrieving data in JSON format using Ajax with > > JQuery. > > Here's the code I use: > > >

[jQuery] Issue with getJSON function... I get the JSON file but I can't do anything with it !! Help please

2009-08-28 Thread lpdahito
Hi guys, I have a problem retrieving data in JSON format using Ajax with JQuery. Here's the code I use: /app/controllers/stories_controller.rb: def index @stories = Story.all respond_to do |format| format.html # index.html.erb format.xml { render :xml => @stories } for