Read json from jquery

0

When wanting to access the value of the title of the next json

With the statement json.message.tittle I'm getting an undefined.

How could I take the tittle value?

    
asked by Jesus Regalado 23.02.2017 в 20:17
source

1 answer

3

As you can see in the image you post, the property is title (a t ) and not tittle ( with 2 t ).

The complete sentence should be:

json.message.title[0]

    
answered by 23.02.2017 / 21:19
source