+4  A: 

Call jQuery.getJSON() instead of the more generic jQuery.get().

Warren Young
+5  A: 

Methinks you mean $.getJSON rather than $.get.

chaos
hahaha omg.. thanks
Jon Erickson
+5  A: 

Use 'json' as 4th parameter of function $.get

$.get(url, params, callback, 'json');
Anatoliy